PlatformIOS.h 445 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "Platform.h"
  3. namespace ToolCore
  4. {
  5. class PlatformIOS : public Platform
  6. {
  7. OBJECT(PlatformIOS);
  8. public:
  9. PlatformIOS(Context* context);
  10. virtual ~PlatformIOS();
  11. String GetName() { return "IOS"; }
  12. PlatformID GetPlatformID() { return PLATFORMID_IOS; }
  13. BuildBase* NewBuild(Project* project);
  14. String ParseProvisionAppIdentifierPrefix(const String& provisionFile);
  15. bool GetLicense();
  16. };
  17. }