24 lines
359 B
C++
24 lines
359 B
C++
#ifndef RECORDER_SETTINGS_H
|
|
#define RECORDER_SETTINGS_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace CameraRecorder {
|
|
namespace Recorder {
|
|
|
|
struct Settings
|
|
{
|
|
std::string Path;
|
|
std::string IpAddress;
|
|
std::string Port;
|
|
std::string URL;
|
|
std::string Username;
|
|
std::string Password;
|
|
};
|
|
|
|
} // namespace Recorder
|
|
} // namespace CameraRecorder
|
|
|
|
#endif // RECORDER_SETTINGS_H
|