Glyphs.cpp 688 B

12345678910111213141516171819
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Glyphs.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma link "PngImageList"
  8. #ifndef NO_RESOURCES
  9. #pragma resource "*.dfm"
  10. #endif
  11. //---------------------------------------------------------------------------
  12. TGlyphsModule * GlyphsModule;
  13. //---------------------------------------------------------------------------
  14. __fastcall TGlyphsModule::TGlyphsModule(TComponent* Owner)
  15. : TDataModule(Owner)
  16. {
  17. }
  18. //---------------------------------------------------------------------------