#ifndef _WFMODEL_H_ #define _WFMODEL_H_ #include class WfModel { public: WfModel() { nCount = 0; bCaliState = false; nIndex = 100; }; int nCount; QString strCreateTime; bool bCaliState; int nIndex; }; #endif