Files
seer/SeerEditorManagerEntry.h
T

15 lines
298 B
C
Raw Normal View History

2021-09-01 13:58:59 -05:00
#pragma once
#include "SeerEditorWidget.h"
#include <QtCore/QString>
#include <QtCore/QMap>
struct SeerEditorManagerEntry {
QString fullname;
QString file;
SeerEditorWidget* widget;
};
typedef QMap<QString,SeerEditorManagerEntry> SeerEditorManagerEntries;