| 12345678910111213141516171819202122232425 |
- #ifndef CCSIM_H
- #define CCSIM_H
- #include <QMainWindow>
- namespace Ui {
- class CCSim;
- }
- class CCSim : public QMainWindow
- {
- Q_OBJECT
- public:
- explicit CCSim(QWidget *parent = 0);
- ~CCSim();
- private:
- Ui::CCSim *ui;
- public slots:
- void updateUiElements();
- };
- #endif // CCSIM_H
|