defuze.me
Client
|
00001 /************************************************************************** 00002 ** defuze.me Epitech Innovative Project 00003 ** 00004 ** Copyright 2010-2011 00005 ** Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard 00006 ** Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier 00007 ** 00008 ** All rights reserved. 00009 **************************************************************************/ 00010 00011 #ifndef ABOUT_HPP 00012 #define ABOUT_HPP 00013 00014 #include "ui_about.h" 00015 00027 class About : public QWidget, private Ui::About 00028 { 00029 Q_OBJECT 00030 00031 public: 00032 explicit About(QWidget *parent = 0); 00033 ~About(); 00034 00035 protected: 00036 void changeEvent(QEvent *e); 00037 }; 00038 00039 #endif // ABOUT_HPP