git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@55 620bd6b2-0a58-f614-fd9a-1bd335dccda9
21 lines
367 B
C++
21 lines
367 B
C++
/*
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
*/
|
|
|
|
#include "AboutDialog.h"
|
|
#include "ui_aboutDialog.h"
|
|
|
|
AboutDialog::AboutDialog(QWidget * parent) :
|
|
QDialog(parent)
|
|
{
|
|
_ui = new Ui_aboutDialog();
|
|
_ui->setupUi(this);
|
|
_ui->label_version->setText(PROJECT_VERSION);
|
|
}
|
|
|
|
AboutDialog::~AboutDialog()
|
|
{
|
|
delete _ui;
|
|
}
|
|
|