~boiko/history-service/rtm-remove_obsolete_tools

« back to all changes in this revision

Viewing changes to tools/tplogger-import/main.cpp

  • Committer: Gustavo Pichorim Boiko
  • Date: 2015-01-21 17:19:22 UTC
  • Revision ID: gustavo.boiko@canonical.com-20150121171922-33hpei8lqrdt4chd
Remove the tools and their dependencies: they are obsolete and not useful anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013 Canonical, Ltd.
3
 
 *
4
 
 * Authors:
5
 
 *  Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>
6
 
 *
7
 
 * This file is part of history-service.
8
 
 *
9
 
 * history-service is free software; you can redistribute it and/or modify
10
 
 * it under the terms of the GNU General Public License as published by
11
 
 * the Free Software Foundation; version 3.
12
 
 *
13
 
 * history-service is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */
21
 
 
22
 
#include <QCoreApplication>
23
 
#include <QDebug>
24
 
#include <TelepathyQt/Types>
25
 
#include <TelepathyLoggerQt/Init>
26
 
#include "telepathylogimporter.h"
27
 
 
28
 
int main(int argc, char **argv)
29
 
{
30
 
    QCoreApplication app(argc, argv);
31
 
 
32
 
    Tp::registerTypes();
33
 
    Tpl::init();
34
 
    TelepathyLogImporter importer;
35
 
    Q_UNUSED(importer)
36
 
 
37
 
    return app.exec();
38
 
}