Advertisement
dram

Untitled

Aug 1st, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #ifndef PLEMIONABOT1_H
  2. #define PLEMIONABOT1_H
  3.  
  4. #include <QtWidgets/QMainWindow>
  5. #include "ui_plemionabot1.h"
  6. #include "ustawienia_window.h"
  7. #include "aktualizujdane_window.h"
  8.  
  9. class plemionabot1 : public QMainWindow
  10. {
  11. Q_OBJECT
  12.  
  13. public:
  14. plemionabot1(QWidget *parent = 0);
  15. ~plemionabot1();
  16. ustawienia_window *h_ustawienia_window = nullptr;
  17. aktualizujdane_window *h_aktualizujdane_window = nullptr;
  18.  
  19. private:
  20. Ui::plemionabot1Class ui;
  21.  
  22. protected:
  23. void closeEvent();
  24. private slots:
  25. void action_ustawienia();
  26. void close_program();
  27. void action_AktualizujDane();
  28. };
  29.  
  30. #endif // PLEMIONABOT1_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement