config.h
341 Bytes
#ifndef CONFIG_H
#define CONFIG_H
#include <QObject>
namespace Define
{
enum ConfigType {
};
}
class Config : public QObject
{
Q_OBJECT
explicit Config(QObject *parent = 0);
static Config *instance;
public:
static Config *getInstance();
static void init();
signals:
public slots:
};
#endif // CONFIG_H