Advertisement
Guest User

Untitled

a guest
Apr 5th, 2015
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #ifndef MYCLASS_H
  2. #define MYCLASS_H
  3.  
  4. #include <QTimer>
  5. #include <QMessageBox>
  6.  
  7. class MyClass : public QObject
  8. {
  9.     Q_OBJECT
  10.  
  11. public:
  12.     MyClass();
  13.     ~MyClass();
  14.  
  15.     QTimer *m_Timer;
  16.  
  17. public slots:
  18.     void MyTimerSlot();
  19.  
  20. };
  21.  
  22. #endif // MYCLASS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement