#include "sender.h"
#include "_gen/sender.moc.hpp"
#include <TelepathyQt/Account>
#include <TelepathyQt/Debug>
#include <TelepathyQt/Constants>
#include <TelepathyQt/ContactMessenger>
#include <TelepathyQt/PendingSendMessage>
#include <TelepathyQt/Types>
#include <QCoreApplication>
Sender::Sender(
const QString &accountPath,
{
accountPath);
connect(messenger->sendMessage(message),
}
Sender::~Sender()
{
}
{
return;
}
}
int main(int argc, char **argv)
{
if (argc < 4) {
qDebug() << "Usage: contact-messenger account_path contact_id message";
return -1;
}
int ret = app.exec();
delete sender;
return ret;
}