mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-10 09:50:17 +02:00
26 lines
368 B
C
26 lines
368 B
C
|
#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
|