You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
438 B

#ifndef SETTINGS_H
#define SETTINGS_H
#include "string_builder.h"
#include "wifi_settings.h"
#include "clock_settings.h"
class Settings
{
private:
Settings();
~Settings();
void add_line(char const* section,
char const* key,
char const* val);
public:
static Settings const* load(char const* settings_filename);
protected:
};
#endif //SETTINGS_H