You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
226 B
C
17 lines
226 B
C
|
5 years ago
|
#ifndef _WFMODEL_H_
|
||
|
|
#define _WFMODEL_H_
|
||
|
|
|
||
|
|
#include <QString>
|
||
|
|
class WfModel
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
WfModel() { nCount = 0; bCaliState = false; nIndex = 100; };
|
||
|
|
|
||
|
|
int nCount;
|
||
|
|
QString strCreateTime;
|
||
|
|
bool bCaliState;
|
||
|
|
int nIndex;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|