PlatformIOS.h 724 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #pragma once
  8. #include "Platform.h"
  9. namespace ToolCore
  10. {
  11. class PlatformIOS : public Platform
  12. {
  13. OBJECT(PlatformIOS);
  14. public:
  15. PlatformIOS(Context* context);
  16. virtual ~PlatformIOS();
  17. String GetName() { return "IOS"; }
  18. PlatformID GetPlatformID() { return PLATFORMID_IOS; }
  19. BuildBase* NewBuild(Project* project);
  20. String ParseProvisionAppIdentifierPrefix(const String& provisionFile);
  21. bool GetLicense();
  22. };
  23. }