| 123456789101112131415161718192021222324252627 |
- #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::vector<std::string> txtEditor, txtEditorCmd;
- std::ofstream * logfile;
- CConsoleHandler * console;
- Ui::EditorClass ui;
- };
- #endif // EDITOR_H
|