Editor.h 422 B

123456789101112131415161718192021222324252627
  1. #ifndef EDITOR_H
  2. #define EDITOR_H
  3. #include <QtWidgets/QMainWindow>
  4. #include "ui_editor.h"
  5. class CConsoleHandler;
  6. class Editor : public QMainWindow
  7. {
  8. Q_OBJECT
  9. public:
  10. Editor(QWidget *parent = 0);
  11. ~Editor();
  12. void createMenus();
  13. private:
  14. std::vector<std::string> txtEditor, txtEditorCmd;
  15. std::ofstream * logfile;
  16. CConsoleHandler * console;
  17. Ui::EditorClass ui;
  18. };
  19. #endif // EDITOR_H