1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #pragma once
|
|
| class CMBFireQrCodeInfo;
| typedef vector<CMBFireQrCodeInfo*> CMBFireQrCodeInfoVector;
|
|
| class AFX_EXT_CLASS CMBFireQrCodeInfo
| {
| public:
| CMBFireQrCodeInfo(void);
| ~CMBFireQrCodeInfo(void);
| public:
| int m_nDataType;
| CString m_strClsID;
| CString m_strAttr;
| CString m_strValue;
| };
|
|