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