BindCmd.h 459 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. #include "Command.h"
  3. using namespace Atomic;
  4. namespace ToolCore
  5. {
  6. class BindCmd: public Command
  7. {
  8. OBJECT(BindCmd);
  9. public:
  10. BindCmd(Context* context);
  11. virtual ~BindCmd();
  12. bool Parse(const Vector<String>& arguments, unsigned startIndex, String& errorMsg);
  13. void Run();
  14. bool RequiresProjectLoad() { return false; }
  15. private:
  16. String bindPlatform_;
  17. String sourceRootFolder_;
  18. String packageFolder_;
  19. };
  20. }