18 lines
264 B
C
18 lines
264 B
C
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
#include "Channel.h"
|
||
|
#include <QString>
|
||
|
|
||
|
class Config {
|
||
|
public:
|
||
|
Config();
|
||
|
static void loadConfig(QString path);
|
||
|
static Channel* findChannelByName(QString name);
|
||
|
|
||
|
private:
|
||
|
void initConfig();
|
||
|
};
|
||
|
|
||
|
#endif // CONFIG_H
|