mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
12 lines
168 B
C++
12 lines
168 B
C++
#include "gpclient.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
GPClient w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|