mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-21 16:50:53 +01:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@42 bfdf4180-ca20-0410-9c96-a3a8aa849046
19 lines
377 B
C++
19 lines
377 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() const;
|
|
QWidget *ongletAPropos() const;
|
|
QWidget *ongletAuteurs() const;
|
|
QWidget *ongletLicence() const;
|
|
};
|
|
#endif
|