Alf Gaida 61cadf1659 Cherry-picking upstream release: 0.9.0.
* Moved debian/.gitignore to ./.gitignore
* Bumped build dependency lxqt-build-tools to >= 0.5.0~
* Removed cmake fix, applied upstream
* Added some options to rules
* Added some new symbols
2018-05-24 01:11:16 +02:00

20 lines
511 B
C++

#include "remoteterm.h"
#include <QApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
if(a.arguments().size() != 3){
qDebug() << "Example(client-side) for remote terminal of QTermWidget.";
qDebug() << QString("Usage: %1 ipaddr port").arg(a.arguments()[0]);
return 1;
}
QString ipaddr = a.arguments().at(1);
quint16 port = a.arguments().at(2).toUShort();
RemoteTerm w(ipaddr,port);
w.show();
return a.exec();
}