a465577005
At the moment, telepathy integration needs to be compiled within the daemon. This creates a rather aggressive dependency with Telepathy. This plugin proposes to move into a plugin, so that if the plugin isn't present, telepathy becomes out of the picture. REVIEW: 128149
17 lines
401 B
C++
17 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();
|
|
}
|