24 lines
294 B
C
24 lines
294 B
C
|
/*
|
||
|
* File: Settings.h
|
||
|
* Author: twarren
|
||
|
*
|
||
|
* Created on April 13, 2015, 4:18 PM
|
||
|
*/
|
||
|
|
||
|
#ifndef SETTINGS_H
|
||
|
#define SETTINGS_H
|
||
|
|
||
|
#include "../common.h"
|
||
|
#include "../../include/json/json.h"
|
||
|
|
||
|
class TyroSettings {
|
||
|
public:
|
||
|
TyroSettings();
|
||
|
~TyroSettings();
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* SETTINGS_H */
|
||
|
|