Settings.h 341 B

12345678910111213141516171819202122
  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 Username;
  12. std::string Password;
  13. };
  14. } // namespace Recorder
  15. } // namespace CameraRecorder
  16. #endif // RECORDER_SETTINGS_H