File: resourcemanagment_gui.cpp

package info (click to toggle)
incidenceeditor 25.12.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,100 kB
  • sloc: cpp: 11,933; makefile: 17; xml: 11; sh: 3
file content (26 lines) | stat: -rw-r--r-- 566 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-FileCopyrightText: 2014 Sandro Knauß <knauss@kolabsys.com>

   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/

#include "resourcemanagement.h"

#include <QApplication>
#include <QCommandLineParser>

using namespace IncidenceEditorNG;

int main(int argc, char **argv)
{
    QApplication const app(argc, argv);
    QCommandLineParser parser;
    parser.addVersionOption();
    parser.addHelpOption();
    parser.process(app);

    auto dialog = new ResourceManagement();

    dialog->show();

    return app.exec();
}