alberthrocks

dummy.h

Jan 26th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #ifndef _PROGRAM_H
  2. #define _PROGRAM_H
  3.  
  4.  
  5. #include <QApplication>
  6. #include <QMainWindow>
  7. #include <QVBoxLayout>
  8. #include <QSlider>
  9. #include <QLineEdit>
  10. #include <QMessageBox>
  11. #include <QtCore/QDebug>
  12.  
  13. class MainWindow: public QMainWindow {
  14.     Q_OBJECT
  15.     QSlider *slider;
  16.     QLineEdit *lineEdit;
  17.  
  18. public:
  19.     MainWindow();
  20.     ~MainWindow();
  21.  
  22. private slots:
  23.     void onValueChanged(int value);
  24. };
  25.  
  26. #endif
Add Comment
Please, Sign In to add comment