stationobjects.h

来自「Linux 环境下」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef _STATION_OBJECTS_
#define _STATION_OBJECTS_

#include <list>
using namespace std;
#include "objectstructsdef.h"

class CStationObject;
class CStationObjects
{
public:
	CStationObjects();
	~CStationObjects();
	CStationObject* GetByCode(unsigned short code);
	CStationObject* GetByID(string id);
	list<CStationObject> *GetValueObjList() {return m_pStationObjList;}
protected:
	list<CStationObject> *m_pStationObjList;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?