Settings.h 359 B

1234567891011121314151617181920212223
  1. #ifndef RECORDER_SETTINGS_H
  2. #define RECORDER_SETTINGS_H
  3. #include <string>
  4. namespace CameraRecorder {
  5. namespace Recorder {
  6. struct Settings
  7. {
  8. std::string Path;
  9. std::string IpAddress;
  10. std::string Port;
  11. std::string URL;
  12. std::string Username;
  13. std::string Password;
  14. };
  15. } // namespace Recorder
  16. } // namespace CameraRecorder
  17. #endif // RECORDER_SETTINGS_H