1
1

ccsim.h 295 B

12345678910111213141516171819202122232425
  1. #ifndef CCSIM_H
  2. #define CCSIM_H
  3. #include <QMainWindow>
  4. namespace Ui {
  5. class CCSim;
  6. }
  7. class CCSim : public QMainWindow
  8. {
  9. Q_OBJECT
  10. private:
  11. Ui::CCSim *ui;
  12. public:
  13. explicit CCSim(QWidget* parent = 0);
  14. ~CCSim();
  15. public slots:
  16. void updateUiElements();
  17. };
  18. #endif // CCSIM_H