123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //---------------------------------------------------------------------------
- #ifndef CDSFontNameFH
- #define CDSFontNameFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <stdio.h>
- //---------------------------------------------------------------------------
- #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<int, TVmsFontName*> FLists;
- public:
- int Load();
- TVmsFontName *Find(int ATypeCd);
- };
- //---------------------------------------------------------------------------
- extern TFontNameManager *FontNameManager;
- //---------------------------------------------------------------------------
- #endif
|