~ubuntu-branches/ubuntu/maverick/bluedevil/maverick-proposed

« back to all changes in this revision

Viewing changes to src/daemon/helpers/filereceiver/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-08-07 09:04:19 UTC
  • Revision ID: james.westby@ubuntu.com-20100807090419-68k54ucso2htcf5z
Tags: upstream-1.0~rc2
ImportĀ upstreamĀ versionĀ 1.0~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2010 Eduardo Robles Elvira <edulix@gmail.com>           *
 
3
 *   Copyright (C) 2010 Alejandro Fiestas Olivares <alex@eyeos.org>        *
 
4
 *   Copyright (C) 2010 UFO Coders <info@ufocoders.com>                    *
 
5
 *                                                                         *
 
6
 *   This program is free software; you can redistribute it and/or modify  *
 
7
 *   it under the terms of the GNU General Public License as published by  *
 
8
 *   the Free Software Foundation; either version 2 of the License, or     *
 
9
 *   (at your option) any later version.                                   *
 
10
 *                                                                         *
 
11
 *   This program is distributed in the hope that it will be useful,       *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU General Public License for more details.                          *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU General Public License     *
 
17
 *   along with this program; if not, write to the                         *
 
18
 *   Free Software Foundation, Inc.,                                       *
 
19
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
20
 ***************************************************************************/
 
21
 
 
22
#include "service.h"
 
23
#include <QDebug>
 
24
#include <KComponentData>
 
25
#include <KCmdLineArgs>
 
26
#include <KApplication>
 
27
#include <KAboutData>
 
28
 
 
29
int main(int argc, char *argv[])
 
30
{
 
31
    KAboutData aboutData("bluedevil", 0, ki18n("BlueDevil"), "0.1", ki18n("Bluedevil helper"),
 
32
                         KAboutData::License_GPL, ki18n("(c) 2010, Artesanos del Software"));
 
33
 
 
34
    aboutData.addAuthor(ki18n("Alex Fiestas"), ki18n("Developer"), "alex@eyeos.org",
 
35
        "http://www.afiestas.org/");
 
36
    aboutData.addAuthor(ki18n("Eduardo Robles Elvira"), ki18n("Developer"), "edulix@gmail.com",
 
37
        "http://blog.edulix.es/");
 
38
    aboutData.setProgramIconName("preferences-system-bluetooth");
 
39
 
 
40
    KCmdLineArgs::init(argc, argv, &aboutData);
 
41
 
 
42
    KApplication app;
 
43
    app.setQuitOnLastWindowClosed(false);
 
44
    new Service;
 
45
 
 
46
    return app.exec();
 
47
}