tabfeaturefont.cpp

来自「linux下一款GIS程序源码」· C++ 代码 · 共 45 行

CPP
45
字号
// tabfeaturefont.cpp: implementation of the TABFeatureFont class.////////////////////////////////////////////////////////////////////////#include "tabfeaturefont.h"/********************************************************************** *                   TABFeatureFont::TABFeatureFont() **********************************************************************/TABFeatureFont::TABFeatureFont(){	static const TABFontDef csDefaultFont = MITAB_FONT_DEFAULT;	m_nFontDefIndex=-1;	m_sFontDef = csDefaultFont;}/********************************************************************** *                   TABFeatureFont::~TABFeatureFont() **********************************************************************/TABFeatureFont::~TABFeatureFont(){}/********************************************************************** *                   ITABFeatureFont::DumpFontDef() * * Dump Font definition information. **********************************************************************/void TABFeatureFont::DumpFontDef(FILE *fpOut /*=NULL*/){    if (fpOut == NULL)        fpOut = stdout;    fprintf(fpOut, "  m_nFontDefIndex       = %d\n", m_nFontDefIndex);    fprintf(fpOut, "  m_sFontDef.nRefCount  = %d\n", m_sFontDef.nRefCount);    fprintf(fpOut, "  m_sFontDef.szFontName = '%s'\n", m_sFontDef.szFontName);    fflush(fpOut);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?