simdisplay.h 276 B

12345678910111213141516171819
  1. #ifndef SIMDISPLAY_H
  2. #define SIMDISPLAY_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class SimDisplay;
  6. }
  7. class SimDisplay : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit SimDisplay(QWidget *parent = 0);
  12. ~SimDisplay();
  13. private:
  14. Ui::SimDisplay *ui;
  15. };
  16. #endif // SIMDISPLAY_H