summaryrefslogtreecommitdiff
path: root/qt4/examples/protocols/main.cpp
blob: eed72c236a33c8df81cbf1c824c20c2b9eb75a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <TelepathyQt4/Debug>
#include <TelepathyQt4/Constants>
#include <TelepathyQt4/Types>

#include <QDebug>
#include <QtCore>

#include "protocols.h"

int main(int argc, char **argv)
{
    QCoreApplication app(argc, argv);

    Tp::registerTypes();
    Tp::enableDebug(false);
    Tp::enableWarnings(false);

    Protocols protocols;

    return app.exec();
}