CmImportOptions.h 553 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "CmPrerequisites.h"
  3. #include "CmIReflectable.h"
  4. namespace CamelotFramework
  5. {
  6. class CM_EXPORT ImportOptions : public IReflectable
  7. {
  8. public:
  9. virtual ~ImportOptions() {}
  10. /************************************************************************/
  11. /* SERIALIZATION */
  12. /************************************************************************/
  13. public:
  14. friend class ImportOptionsRTTI;
  15. static RTTITypeBase* getRTTIStatic();
  16. virtual RTTITypeBase* getRTTI() const;
  17. };
  18. }