Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.cpp « src - gitlab.com/Remmina/QRema.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eaca3292c3e2463cedde5dcab0d83e456c70fde5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "qremamain.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QRemaMain w;
    w.show();

    return a.exec();
}