Fixed alpha for rectangles. Refactored the naming of private members (_myAtt to myAtt_). git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@96 620bd6b2-0a58-f614-fd9a-1bd335dccda9
28 lines
413 B
C++
28 lines
413 B
C++
/*
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
*/
|
|
|
|
#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_ */
|