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

Last change on this file since 1046 was 1046, checked in by maronga, 11 years ago

put scripts and utilities under GPL

  • 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// code put under GPL (PALM 3.9)
21//
22// Former revisions:
23// -----------------
24// $Id: main.cpp 1046 2012-11-09 14:38:45Z maronga $
25//
26// 793 2011-12-12 15:15:24Z maronga
27// Initial revision
28//
29// Description:
30// ------------
31// Graphical user-interface (GUI) for the mrun script. All routines are placed
32// in mainwindow.cpp. There are three windows: mainwindow; and two childs:
33// about window and a help window (files ending with .ui). The initial code was
34// written using Qt Creator 2.3.0.
35//----------------------------------------------------------------------------//
36
37#include <QtGui/QApplication>
38#include "mainwindow.h"
39#include <QProcess>
40
41int main(int argc, char *argv[])
42{
43
44    QApplication app(argc, argv);
45//  app.setWindowIcon(QIcon("./mrungui.png"));
46
47    MainWindow w;
48    w.show();
49
50    return app.exec();
51}
52
53
Note: See TracBrowser for help on using the repository browser.