| namespace op | |
| { | |
| class OP_API FileSaver | |
| { | |
| protected: | |
| explicit FileSaver(const std::string& directoryPath); | |
| virtual ~FileSaver(); | |
| std::string getNextFileName(const unsigned long long index) const; | |
| std::string getNextFileName(const std::string& fileNameNoExtension) const; | |
| private: | |
| const std::string mDirectoryPath; | |
| }; | |
| } | |