2022-11-18 23:47:32 +00:00
|
|
|
#ifndef APPCORE_H
|
|
|
|
#define APPCORE_H
|
|
|
|
|
2023-03-17 13:58:38 +00:00
|
|
|
#include <QMenu>
|
2022-11-18 23:47:32 +00:00
|
|
|
#include <QObject>
|
2023-03-17 13:58:38 +00:00
|
|
|
#include <commandsdispatcher.h>
|
2022-11-18 23:47:32 +00:00
|
|
|
#include <libConfig.h>
|
2022-11-22 03:42:48 +00:00
|
|
|
#include <libProjectManager.h>
|
|
|
|
|
2022-11-18 23:47:32 +00:00
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
enum class Scale
|
|
|
|
{
|
|
|
|
Global,
|
|
|
|
Project,
|
|
|
|
File,
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // APPCORE_H
|