18 lines
401 B
C++
18 lines
401 B
C++
|
#include <QCoreApplication>
|
||
|
|
||
|
#include <TelepathyQt/BaseConnectionManager>
|
||
|
#include <TelepathyQt/Constants>
|
||
|
#include <TelepathyQt/Debug>
|
||
|
|
||
|
#include "kdeconnecttelepathyprotocolfactory.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication app(argc, argv);
|
||
|
app.setApplicationName(QLatin1String("telepathy-morse"));
|
||
|
|
||
|
KDEConnectTelepathyProtocolFactory::interface();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|