-
Notifications
You must be signed in to change notification settings - Fork 10
/
CommunicationPLC.h
55 lines (48 loc) · 1021 Bytes
/
CommunicationPLC.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
*********************************************************************************
*
*版权:黄凯
*
*********************************************************************************
*
*创建人:黄凯
*创建时间:2015.05.06
*
*********************************************************************************
*
*功能描述:PLC连接读取接口
*
*********************************************************************************
*
*
*
*********************************************************************************
*/
#ifndef _COMMUNICATION_PLC_H
#define _COMMUNICATION_PLC_H
namespace Omron
{
interface CCommunicationPLC
{
public:
/**
* 读数据接口
*
*
* @param addrPLC PLC地址
* @param Value 返回值
* @return void.
*/
virtual void Read(CString addrPLC, CString &Value){};
/**
* 写数据接口
*
*
* @param addrPLC PLC地址
* @param Value 写入值
* @return void.
*/
virtual void Write(CString addrPLC, CString &Value){};
};
}
#endif //_COMMUNICATION_PLC_H