| 123456789101112131415161718 |
- #ifndef UTIL_UTIL_H
- #define UTIL_UTIL_H
- #include <string>
- namespace CameraRecorder {
- namespace Util {
- std::string GetDateTimeString(bool omitSeparator = false);
- bool FolderExists(const std::string& path);
- void CreateFolder(const std::string& path);
- } // namespace Util
- } // namespace CameraRecorder
- #endif // UTIL_UTIL_H
|