obs-websocket/src/Config.h

28 lines
415 B
C
Raw Normal View History

2021-04-27 02:59:50 +00:00
#pragma once
#include <QString>
#include <util/config-file.h>
class Config {
public:
Config();
void Load();
void Save();
void SetDefaultsToGlobalStore();
config_t* GetConfigStore();
bool PortOverridden;
bool PasswordOverridden;
bool FirstLoad;
2021-04-27 02:59:50 +00:00
bool ServerEnabled;
uint16_t ServerPort;
bool DebugEnabled;
bool AlertsEnabled;
bool AuthRequired;
QString ServerPassword;
private:
2021-04-28 17:27:32 +00:00
2021-04-27 21:52:48 +00:00
};