author | hgs |
Fri, 15 Oct 2010 12:58:46 +0300 | |
changeset 78 | baacf668fe89 |
parent 50 | 377c906a8701 |
permissions | -rw-r--r-- |
37 | 1 |
/* |
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 |
* All rights reserved. |
|
4 |
* This component and the accompanying materials are made available |
|
5 |
* under the terms of "Eclipse Public License v1.0" |
|
6 |
* which accompanies this distribution, and is available |
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
* |
|
9 |
* Initial Contributors: |
|
10 |
* Nokia Corporation - initial contribution. |
|
11 |
* |
|
12 |
* Contributors: |
|
13 |
* |
|
14 |
* Description: |
|
15 |
* |
|
16 |
*/ |
|
50 | 17 |
|
37 | 18 |
#include <networkhandlingstarter.h> |
45
6b911d05207e
Revision: 201023
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
19 |
#include <xqserviceutil.h> |
50 | 20 |
#include <hbapplication.h> |
37 | 21 |
|
22 |
/*! |
|
23 |
main. |
|
24 |
*/ |
|
25 |
int main(int argc, char **argv) |
|
26 |
{ |
|
45
6b911d05207e
Revision: 201023
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
27 |
HbApplication app(argc, argv, Hb::NoSplash); |
37 | 28 |
NetworkHandlingStarter service; |
78 | 29 |
service.start(); |
50 | 30 |
XQServiceUtil::toBackground(true); |
31 |
return app.exec(); |
|
37 | 32 |
} |
33 |