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
344 B
C
15 lines
344 B
C
4 years ago
|
#pragma once
|
||
|
#include "fonttype.h"
|
||
|
class CFontTrueType :public CFontType
|
||
|
{
|
||
|
public:
|
||
|
CFontTrueType(void);
|
||
|
~CFontTrueType(void);
|
||
|
virtual CString GetFontType(){return "FontTrueType";};
|
||
|
virtual void Initialize();
|
||
|
virtual void CreatCharVec(char *pChar,vector<PointType> &PonitVec);
|
||
|
private:
|
||
|
void Mirror(vector<PointType> &PonitVec);
|
||
|
};
|
||
|
|