| 12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- #include <Atomic/Core/Object.h>
- using namespace Atomic;
- namespace AtomicEditor
- {
- class FileUtils : public Object
- {
- OBJECT(FileUtils);
- public:
- /// Construct.
- FileUtils(Context* context);
- /// Destruct.
- ~FileUtils();
- bool CreateDirs(const String& folder);
- String OpenProjectFileDialog();
- String NewProjectFileDialog();
- String GetBuildPath(const String& defaultPath);
- void RevealInFinder(const String& fullpath);
- private:
- };
- }
|