mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
18 lines
356 B
C++
18 lines
356 B
C++
#pragma once
|
|
#include <map>
|
|
#include <string>
|
|
#include <obs-module.h>
|
|
|
|
using namespace std;
|
|
class Settings {
|
|
map<string, string> settings;
|
|
public:
|
|
void load();
|
|
map<string, string> getMap();
|
|
string getSettingsFilePath();
|
|
void setSettingsFilePath(string path);
|
|
private:
|
|
string settingsFilePath = "";
|
|
void addToMap(string, string);
|
|
};
|