29 lines
381 B
C++
29 lines
381 B
C++
#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
|