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.
19 lines
427 B
C++
19 lines
427 B
C++
#pragma once
|
|
#include "ObjComposite.h"
|
|
|
|
class CObjChar :public CObjComposite
|
|
{
|
|
public:
|
|
CObjChar(char *p);
|
|
~CObjChar(void);
|
|
virtual OBJ_TYPE GetType(){return _TYPE_CHAR;};
|
|
virtual CString GetStr();
|
|
virtual CObjChar * Clone(){return new CObjChar(*this);};
|
|
virtual void Operate(SObjOperatePar &par);
|
|
void Creat();
|
|
private:
|
|
void CreatObjData(vector<PointType> &m_PonitVec);
|
|
private:
|
|
char *m_pChar;
|
|
};
|