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.

21 lines
499 B
C

#pragma once
#include "valstrbase.h"
#include "GlobalDefine.h"
#include "EnumValStrType.h"
class CValStrDate :public CValStrBase
{
public:
CValStrDate(void);
~CValStrDate(void);
virtual CValStrDate * Clone(){return new CValStrDate(*this);};
virtual CString GetTypeStr();
virtual CString GetStr();
CString GetDateTypeStr();
void SetDateType(VAL_DATE_TYPR t){m_DateType = t;};
VAL_DATE_TYPR GetDateType(){return m_DateType;};
private:
VAL_DATE_TYPR m_DateType;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
};