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
448 B
C++

#pragma once
#include "fonttype.h"
typedef pair<CString,int> BarcodeType;
class CFontBarcode :public CFontType
{
public:
CFontBarcode(void);
~CFontBarcode(void);
virtual CString GetFontType(){return "FontBarcode";};
virtual void Initialize();
virtual int GetCurFontNameIdx();
private:
void IniBarcodeTypeVec();
private:
vector<BarcodeType> m_BarcodeTypeVec;//保存使用的条码类型,索引值和tag_BarCType 中对应
};