1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-10 09:50:17 +02:00
vcmi/Editor/Editor.h

26 lines
368 B
C
Raw Normal View History

#ifndef EDITOR_H
#define EDITOR_H
#include <QtWidgets/QMainWindow>
#include "ui_editor.h"
class CConsoleHandler;
class Editor : public QMainWindow
{
Q_OBJECT
public:
Editor(QWidget *parent = 0);
~Editor();
void createMenus();
private:
std::ofstream * logfile;
CConsoleHandler * console;
Ui::EditorClass ui;
};
#endif // EDITOR_H