mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 09:00:42 +08:00
23 lines
511 B
C
23 lines
511 B
C
#pragma once
|
|
|
|
#include "SeerEditorWidgetSource.h"
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QMap>
|
|
#include <QtCore/QVector>
|
|
|
|
struct SeerEditorManagerEntry {
|
|
QString fullname;
|
|
QString file;
|
|
SeerEditorWidgetSource* widget;
|
|
};
|
|
|
|
typedef QMap<QString,SeerEditorManagerEntry> SeerEditorManagerEntries;
|
|
|
|
struct SeerEditorManagerFile {
|
|
QString fullname;
|
|
QString file;
|
|
};
|
|
|
|
typedef QVector<SeerEditorManagerFile> SeerEditorManagerFiles;
|
|
|