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.

22 lines
500 B
C

#pragma once
#include "valstrbase.h"
#include "GlobalDefine.h"
#include "EnumValStrType.h"
class CValStrTime :public CValStrBase
{
public:
CValStrTime(void);
~CValStrTime(void);
virtual CValStrTime * Clone(){return new CValStrTime(*this);};
virtual CString GetTypeStr();
virtual CString GetStr();
CString GetTimeTypeStr();
void SetTimeType(VAL_TIME_TYPR t){m_TimeType = t;};
VAL_TIME_TYPR GetTimeType(){return m_TimeType;};
private:
VAL_TIME_TYPR m_TimeType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
};