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.

18 lines
244 B
C

#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;
QString strName;
};
#endif