2020-03-06 18:09:57 +08:00
|
|
|
/*
|
2024-08-19 20:50:05 +08:00
|
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
2020-03-06 18:09:57 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2024-08-19 20:50:05 +08:00
|
|
|
#include <string>
|
2020-05-12 06:02:56 +08:00
|
|
|
|
2023-08-03 01:33:48 +08:00
|
|
|
namespace NEO {
|
2020-03-06 18:09:57 +08:00
|
|
|
|
|
|
|
class PinContext {
|
|
|
|
public:
|
2023-08-03 01:33:48 +08:00
|
|
|
static bool init(const std::string >PinOpenFunctionName);
|
2020-05-12 06:02:56 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const std::string gtPinLibraryFilename;
|
2020-03-06 18:09:57 +08:00
|
|
|
};
|
|
|
|
|
2023-08-03 01:33:48 +08:00
|
|
|
} // namespace NEO
|