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.
15 lines
365 B
C++
15 lines
365 B
C++
#pragma once
|
|
#include "fonttype.h"
|
|
class CFontLaipu :public CFontType
|
|
{
|
|
public:
|
|
CFontLaipu(void);
|
|
~CFontLaipu(void);
|
|
virtual CString GetFontType(){return "FontLaipu";};
|
|
virtual void Initialize();
|
|
virtual void CreatCharVec(char *pChar,vector<PointType> &PonitVec);
|
|
private:
|
|
void CreatCharVecExt(unsigned char AsciiCode,vector<PointType> &PonitVec);
|
|
};
|
|
|