This commit is contained in:
parent
8194e555e1
commit
f099398fba
1
Config.h
1
Config.h
|
@ -2,7 +2,6 @@
|
|||
#define __Config_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Storage\Storage.h"
|
||||
|
||||
// 配置管理
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __BinaryPair_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Message.h"
|
||||
|
||||
#include "Net\Net.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __DataStore_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
class IDataPort;
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __Message_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
// 消息基类
|
||||
class Message
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __MessageBase_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Message.h"
|
||||
|
||||
// 应用消息基类
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __WeakStore_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
// 弱存储。
|
||||
// 采用全局变量或者堆分配的变量在系统启动时会被清空。
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __Slave_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
class ModbusErrors
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "Time.h"
|
||||
#include "Stream.h"
|
||||
#include "Sys.h"
|
||||
#include "Time.h"
|
||||
#include "ITransport.h"
|
||||
|
||||
#include "DNS.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define _TinyIP_ICMP_H_
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "TinyIP.h"
|
||||
|
||||
// ICMP协议
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
// 模块开发使用说明见后
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Net\ITransport.h"
|
||||
#include "Net\Net.h"
|
||||
#include "Net\Ethernet.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __DevMgmt_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "TokenNet\Device.h"
|
||||
#include "TokenNet\DeviceMessage.h"
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __TinyConfig_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Config.h"
|
||||
|
||||
// 必须设定为1字节对齐,否则offsetof会得到错误的位置
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include "Sys.h"
|
||||
#include "Net\ITransport.h"
|
||||
#include "Stream.h"
|
||||
#include "TokenNet\Device.h"
|
||||
|
||||
#include "Message\Controller.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __Device_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
#include "Flash.h"
|
||||
#include "TinyNet\TinyConfig.h"
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#include "TokenConfig.h"
|
||||
#include "Net\Net.h"
|
||||
#include "Config.h"
|
||||
|
||||
TokenConfig* TokenConfig::Current = nullptr;
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __TokenConfig_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Config.h"
|
||||
#include "Net\Net.h"
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __TokenController_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
#include "Net\ITransport.h"
|
||||
|
||||
#include "Message\Controller.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __TokenDataMessage_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
#include "Message\Message.h"
|
||||
#include "Message\MessageBase.h"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
#define __TokenMessage_H__
|
||||
|
||||
#include "Sys.h"
|
||||
#include "Stream.h"
|
||||
|
||||
#include "Message\Message.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue