mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1 bfdf4180-ca20-0410-9c96-a3a8aa849046
19 lines
353 B
C++
19 lines
353 B
C++
#ifndef ABOUTQET_H
|
|
#define ABOUTQET_H
|
|
#include <QtGui>
|
|
/**
|
|
Cette classe represente la boite de dialogue
|
|
« A propos de QElectroTech »
|
|
*/
|
|
class AboutQET : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AboutQET(QWidget * = 0);
|
|
private:
|
|
QWidget *titre();
|
|
QWidget *ongletAPropos();
|
|
QWidget *ongletAuteurs();
|
|
QWidget *ongletLicence();
|
|
};
|
|
#endif
|