Guest User

FenPrincipale.h

a guest
Jul 1st, 2011
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef FENPRINCIPALE_H
  2. #define FENPRINCIPALE_H
  3.  
  4. #include <QtGui>
  5. #include "FenFille.h"
  6.  
  7. class FenPrincipale : public QWidget
  8. {
  9.     Q_OBJECT
  10. public:
  11.     FenPrincipale();
  12.  
  13. public slots:
  14.     ouvreFenetreFille();
  15.  
  16. private:
  17.     QPushButton *m_bouton;
  18.     FenetreFille *m_fenFille;
  19. };
  20.  
  21. #endif // FENPRINCIPALE_H
Advertisement
Add Comment
Please, Sign In to add comment