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.
|
#pragma once
|
|
#include "valstrbase.h"
|
|
//固定文本
|
|
class CValStrFixed :public CValStrBase
|
|
{
|
|
public:
|
|
CValStrFixed(void);
|
|
~CValStrFixed(void);
|
|
virtual CValStrFixed * Clone(){return new CValStrFixed(*this);};
|
|
virtual CString GetTypeStr();
|
|
};
|
|
|