~ubuntu-branches/ubuntu/intrepid/kdebluetooth/intrepid-proposed

« back to all changes in this revision

Viewing changes to src/device-manager/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2008-08-07 09:49:47 UTC
  • mto: This revision was merged to the branch mainline in revision 56.
  • Revision ID: james.westby@ubuntu.com-20080807094947-pj6q3uxwuv7l844q
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  KBluetooth4 - KDE4 Bluetooth Framework
 
4
 *
 
5
 *  Copyright (C) 2008  Tom Patzig <tpatzig@suse.de>
 
6
 *
 
7
 *  This file is part of kbluetooth4.
 
8
 *
 
9
 *  kbluetooth4 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; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  kbluetooth4 is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with kbluetooth4; if not, write to the Free Software
 
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
22
 *
 
23
*/
 
24
 
 
25
//#include <kuniqueapplication.h>
 
26
#include <KApplication>
 
27
#include <iostream>
 
28
#include <kcomponentdata.h>
 
29
#include <kaboutdata.h>
 
30
#include <kcmdlineargs.h>
 
31
 
 
32
#include "devicemanager.h"
 
33
 
 
34
 
 
35
int main(int argc, char *argv[])
 
36
{
 
37
        
 
38
static const char *description =
 
39
    I18N_NOOP("kbluetooth4 device-manager");
 
40
 
 
41
        KAboutData aboutData("kbluetooth4-devicemanager",
 
42
               I18N_NOOP("KBluetooth4 Device-Manager"),
 
43
               ki18n("KBluetooth4 - The KDE4 Bluetooth Framework"),"0.1",
 
44
        ki18n(description), KAboutData::License_GPL);
 
45
        aboutData.addAuthor(ki18n("Tom Patzig"), KLocalizedString(), "tpatzig@suse.de", "http://www.kde.org/");
 
46
 
 
47
        
 
48
    KComponentData component(&aboutData);
 
49
 
 
50
    KCmdLineArgs::init( argc, argv, &aboutData );
 
51
 
 
52
//    KUniqueApplication::addCmdLineOptions();
 
53
 
 
54
/*    
 
55
    if (!KUniqueApplication::start()) {
 
56
        fprintf(stderr, "KBluetooth4 Device-Manager is already running!\n");
 
57
        return 0;
 
58
    }
 
59
*/
 
60
 
 
61
    KApplication a;
 
62
 
 
63
//    a.disableSessionManagement();
 
64
//    a.setQuitOnLastWindowClosed( true );
 
65
 
 
66
    
 
67
    DeviceMan manager;
 
68
    manager.show();
 
69
    
 
70
    return a.exec();
 
71
 
 
72
}