ProjectUserPrefs.h 468 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #include <Atomic/Core/Object.h>
  3. using namespace Atomic;
  4. namespace ToolCore
  5. {
  6. class ProjectUserPrefs : public Object
  7. {
  8. OBJECT(ProjectUserPrefs);
  9. public:
  10. /// Construct.
  11. ProjectUserPrefs(Context* context);
  12. /// Destruct.
  13. virtual ~ProjectUserPrefs();
  14. const String& GetLastBuildPath() { return lastBuildPath_; }
  15. void SetLastBuildPath(const String& path) { lastBuildPath_ = path; }
  16. private:
  17. String lastBuildPath_;
  18. };
  19. }