Home · Modules · All Classes · All Namespaces
accounts/main.cpp
#include <TelepathyQt/Debug>
#include <TelepathyQt/Constants>
#include <TelepathyQt/Types>
#include <QApplication>
#include <QtGui>
#include "accounts-window.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
AccountsWindow w;
w.show();
return app.exec();
}