dll加载路径错误
This commit is contained in:
15
hardware_monitor_wrapper/native/include/Group.h
Normal file
15
hardware_monitor_wrapper/native/include/Group.h
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include "dll_macro.h"
|
||||
#include <string>
|
||||
struct innerGroup;
|
||||
class DLL_API Group {
|
||||
public:
|
||||
Group(std::shared_ptr<innerGroup> inner):inner(inner){}
|
||||
virtual ~Group() {
|
||||
}
|
||||
bool isNull() const;
|
||||
virtual std::string GetReport();
|
||||
virtual void Close();
|
||||
protected:
|
||||
std::shared_ptr<innerGroup> inner;
|
||||
};
|
Reference in New Issue
Block a user