feature: Introduce SipClassType::externalLib

Related-To: NEO-13737
Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
Jitendra Sharma
2025-03-18 18:19:14 +00:00
committed by Compute-Runtime-Automation
parent 0e25970853
commit dda7876d3a
15 changed files with 144 additions and 5 deletions

View 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