📄 objectstructsdef.h
字号:
#ifndef _OBJECT_STRUCTS_
#define _OBJECT_STRUCTS_
#include <string>
using namespace std;
typedef struct STATIONCONFIG
{
string id;
string name;
unsigned short code;
unsigned char type;
}*PSTCONFIG,STCONFIG;
//
typedef struct SIGNALOBJECT
{
string id;
string stid;
string name;
unsigned short code;
}*PSIGNALOBJ,SIGNALOBJ;
//
typedef struct VALUEOBJECT
{
string id;
string stid;
string name;
unsigned short code;
unsigned char type;
string unit;
int atod;
float scalemax;
float scalemin;
}*PVALUEOBJ,VALUEOBJ;
#endif //_OBJECT_STRUCTS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -