source: palm/trunk/UTIL/mrungui/main.cpp @ 1804

Last change on this file since 1804 was 1804, checked in by maronga, 8 years ago

removed parameter file check. update of mrungui for compilation with qt5

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1//------------------------------------------------------------------------------//
2// This file is part of PALM.
3//
4// PALM is free software: you can redistribute it and/or modify it under the terms
5// of the GNU General Public License as published by the Free Software Foundation,
6// either version 3 of the License, or (at your option) any later version.
7//
8// PALM is distributed in the hope that it will be useful, but WITHOUT ANY
9// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
10// A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
11//
12// You should have received a copy of the GNU General Public License along with
13// PALM. If not, see <http://www.gnu.org/licenses/>.
14//
15// Copyright 1997-2012  Leibniz University Hannover
16//--------------------------------------------------------------------------------//
17//
18// Current revisions:
19// -----------------
20// Update for use with qt5
21//
22// Former revisions:
23// -----------------
24// $Id: main.cpp 1804 2016-04-05 16:30:18Z maronga $
25//
26// 1046 2012-11-09 14:38:45Z maronga
27// code put under GPL (PALM 3.9)
28//
29// 793 2011-12-12 15:15:24Z maronga
30// Initial revision
31//
32// Description:
33// ------------
34// Graphical user-interface (GUI) for the mrun script. All routines are placed
35// in mainwindow.cpp. There are three windows: mainwindow; and two childs:
36// about window and a help window (files ending with .ui). The initial code was
37// written using Qt Creator 2.3.0.
38//----------------------------------------------------------------------------//
39
40#include <QApplication>
41#include "mainwindow.h"
42#include <QProcess>
43
44int main(int argc, char *argv[])
45{
46
47    QApplication app(argc, argv);
48//  app.setWindowIcon(QIcon("./mrungui.png"));
49
50    MainWindow w;
51    w.show();
52
53    return app.exec();
54}
55
56
Note: See TracBrowser for help on using the repository browser.