obs-websocket/src/Config.h

30 lines
479 B
C
Raw Normal View History

2021-04-27 02:59:50 +00:00
#pragma once
#include <QString>
#include <util/config-file.h>
2021-09-04 17:47:51 +00:00
#include "plugin-macros.generated.h"
2021-04-27 02:59:50 +00:00
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;
2021-10-01 02:14:17 +00:00
std::atomic<bool> DebugEnabled;
std::atomic<bool> AlertsEnabled;
2021-04-27 02:59:50 +00:00
bool AuthRequired;
QString ServerPassword;
private:
2021-04-28 17:27:32 +00:00
2021-04-27 21:52:48 +00:00
};