summaryrefslogtreecommitdiff
path: root/test/poi-service/poi-client/about-dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/poi-service/poi-client/about-dialog.cpp')
-rw-r--r--test/poi-service/poi-client/about-dialog.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/poi-service/poi-client/about-dialog.cpp b/test/poi-service/poi-client/about-dialog.cpp
new file mode 100644
index 0000000..45e7902
--- /dev/null
+++ b/test/poi-service/poi-client/about-dialog.cpp
@@ -0,0 +1,41 @@
+/**
+* @licence app begin@
+* SPDX-License-Identifier: MPL-2.0
+*
+* \copyright Copyright (C) 2013-2014, PCA Peugeot Citroen
+*
+* \file about-dialog.cpp
+*
+* \brief This file is part of the poi proof of concept.
+*
+* \author Philippe Colliot <philippe.colliot@mpsa.com>
+*
+* \version 1.1
+*
+* This Source Code Form is subject to the terms of the
+* Mozilla Public License (MPL), v. 2.0.
+* If a copy of the MPL was not distributed with this file,
+* You can obtain one at http://mozilla.org/MPL/2.0/.
+*
+* For further information see http://www.genivi.org/.
+*
+* List of changes:
+* 10-02-2014, Philippe Colliot, refinement and migration to the new repository
+* <date>, <name>, <description of change>
+*
+* @licence end@
+*/
+#include "about-dialog.h"
+#include "ui_about-dialog.h"
+
+aboutDialog::aboutDialog(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::aboutDialog)
+{
+ ui->setupUi(this);
+}
+
+aboutDialog::~aboutDialog()
+{
+ delete ui;
+}