//--------------------------------------------------------------------------- #ifndef CDSFontNameFH #define CDSFontNameFH //--------------------------------------------------------------------------- #include #include //--------------------------------------------------------------------------- #include "ITSLibF.h" //--------------------------------------------------------------------------- class TVmsFontName { public: TVmsFontName(int AFONT_CD, String AFONT_NM, String AFONT_DESC); TVmsFontName() {}; ~TVmsFontName() {}; public: int FONT_CD; String FONT_NM; String FONT_DESC; String USE_YN; }; //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- class TFontNameManager { public: TFontNameManager(); ~TFontNameManager(); private: public: TItsMap FLists; public: int Load(); TVmsFontName *Find(int ATypeCd); }; //--------------------------------------------------------------------------- extern TFontNameManager *FontNameManager; //--------------------------------------------------------------------------- #endif