QtNovelUI/WordsIDE/appcore.h

29 lines
381 B
C
Raw Normal View History

2022-11-18 23:47:32 +00:00
#ifndef APPCORE_H
#define APPCORE_H
#include <QObject>
#include <libConfig.h>
namespace Core {
enum class Scale
{
Global,
Project,
File,
};
class AppCore
{
public:
AppCore();
virtual ~AppCore() = default;
QList<Config::Configration*> getConfigs(QList<Scale> types) const;
};
}
#endif // APPCORE_H