2011-11-24 19:11:30 +00:00
|
|
|
/*
|
2011-12-02 18:34:08 +00:00
|
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
2011-11-24 19:11:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ABOUTDIALOG_H_
|
|
|
|
|
#define ABOUTDIALOG_H_
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QDialog>
|
|
|
|
|
#include <QtCore/QUrl>
|
|
|
|
|
|
|
|
|
|
class Ui_aboutDialog;
|
|
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
AboutDialog(QWidget * parent = 0);
|
|
|
|
|
|
|
|
|
|
virtual ~AboutDialog();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui_aboutDialog * _ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ABOUTDIALOG_H_ */
|