| 123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #include "CmPrerequisites.h"
- #include "CmRTTIType.h"
- #include "CmFontImportOptions.h"
- namespace CamelotFramework
- {
- class CM_EXPORT FontImportOptionsRTTI : public RTTIType<FontImportOptions, IReflectable, FontImportOptionsRTTI>
- {
- private:
- public:
- FontImportOptionsRTTI()
- {
- }
- virtual const String& getRTTIName()
- {
- static String name = "FontImportOptions";
- return name;
- }
- virtual UINT32 getRTTIId()
- {
- return TID_FontImportOptions;
- }
- virtual std::shared_ptr<IReflectable> newRTTIObject()
- {
- return cm_shared_ptr<FontImportOptions, PoolAlloc>();
- }
- };
- }
|