mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
feature: Introduce SipClassType::externalLib
Related-To: NEO-13737 Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
0e25970853
commit
dda7876d3a
27
shared/source/sip_external_lib/sip_external_lib.h
Normal file
27
shared/source/sip_external_lib/sip_external_lib.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (C) 2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
||||
#include "shared/source/os_interface/os_library.h"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
namespace NEO {
|
||||
|
||||
class SipExternalLib : NonCopyableAndNonMovableClass {
|
||||
public:
|
||||
virtual ~SipExternalLib() {}
|
||||
static SipExternalLib *getSipExternalLibInstance();
|
||||
static std::string_view getLibName();
|
||||
|
||||
std::unique_ptr<OsLibrary> libraryHandle = nullptr;
|
||||
};
|
||||
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user