blob: cd2282377def880779b059b4fcaaf7f7773c0443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _CPROTOCLDATA_H_INCLUDED_
#define _CPROTOCLDATA_H_INCLUDED_
class CProtocolData
{
public:
tstring strProtocol;
int iStatus;
int iDesiredStatus;
long lTimeStamp;
};
#endif
|