dll加载路径错误

This commit is contained in:
2025-06-08 17:40:21 +08:00
parent 232ba1a5ae
commit 2298e69a1c
84 changed files with 4749 additions and 241 deletions

View File

@ -0,0 +1,26 @@
#pragma once
#include <string>
class Visitor;
#include "Identifier.h"
class Sensor;
#include "dll_macro.h"
struct innerParameter;
class DLL_API Parameter {
public:
Parameter(innerParameter* inner);
~Parameter();
bool isNull() const;
bool operator==(const Parameter& other) const;
float getDefaultValue();
std::string getDescription();
Identifier getIdentifier();
bool isDefault();
std::string getName();
Sensor getSensor();
float getValue();
void Accept(Visitor* visitor);
void Traverse(Visitor* visitor);
private:
innerParameter* inner;
};