Util.h 328 B

123456789101112131415161718
  1. #ifndef UTIL_UTIL_H
  2. #define UTIL_UTIL_H
  3. #include <string>
  4. namespace CameraRecorder {
  5. namespace Util {
  6. std::string GetDateTimeString(bool omitSeparator = false);
  7. bool FolderExists(const std::string& path);
  8. void CreateFolder(const std::string& path);
  9. } // namespace Util
  10. } // namespace CameraRecorder
  11. #endif // UTIL_UTIL_H