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,30 @@
#pragma once
struct innerCsControl;
class Sensor;
#include "Identifier.h"
#include "dll_macro.h"
#include <memory>
enum CsControlMode
{
Undefined,
Software,
Default,
ObjectIsNull
};
class DLL_API CsControl
{
public:
CsControl(std::shared_ptr<innerCsControl> inner);
~CsControl();
bool isNull() const;
CsControlMode getCsControlMode();
Identifier getIdentifier();
float getMaxSoftwareValue();
float getMinSoftwareValue();
Sensor getSensor();
float getSoftwareValue();
void SetDefault();
void SetSoftware(float value);
private:
std::shared_ptr<innerCsControl> inner;
};