#include <TelepathyQt/Debug>
#include <TelepathyQt/Types>
#include <QApplication>
#include <QDebug>
#include <QtGui>
#include "roster-window.h"
int main(int argc, char **argv)
{
if (argc < 2) {
qDebug() << "usage:" << argv[0] << "<account name, as in mc-tool list>";
return 1;
}
RosterWindow w(accountPath);
w.show();
return app.exec();
}