dll加载路径错误
This commit is contained in:
26
hardware_monitor_wrapper/native/include/Identifier.h
Normal file
26
hardware_monitor_wrapper/native/include/Identifier.h
Normal file
@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
#include "dll_macro.h"
|
||||
#include <string>
|
||||
#include <memory>
|
||||
struct innerIdentifier;
|
||||
class DLL_API Identifier {
|
||||
public:
|
||||
Identifier(std::shared_ptr<innerIdentifier> inner);
|
||||
//Identifier(params string[] identifiers);
|
||||
//Identifier(Identifier identifier, params string[] extensions)
|
||||
int CompareTo(Identifier other);
|
||||
//static void CheckIdentifiers(IEnumerable<string> identifiers)
|
||||
std::string ToString();
|
||||
int GetHashCode();
|
||||
bool operator==(const Identifier& other) const;
|
||||
bool operator!=(const Identifier& other) const;
|
||||
bool operator<(const Identifier& id) const;
|
||||
bool operator>(const Identifier& id) const;
|
||||
bool isNull() const;
|
||||
|
||||
|
||||
private:
|
||||
std::shared_ptr<innerIdentifier> inner;
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user