File: main.cpp

package info (click to toggle)
okteta 5%3A0.26.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,832 kB
  • sloc: cpp: 89,255; xml: 974; javascript: 372; sh: 57; makefile: 11; java: 5
file content (19 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
    This file is part of the Okteta program, made within the KDE community.

    SPDX-FileCopyrightText: 2006-2008 Friedrich W. H. Kossebau <kossebau@kde.org>

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

// program
#include "program.hpp"

int main(int argc, char* argv[])
{
    Kasten::OktetaProgram program(argc, argv);

    const int result = program.execute();

    return result;
}