| 123456789101112131415161718192021222324252627282930313233 |
- #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();
- void RevealInFinder(const String& fullpath);
- private:
- };
- }
|