| author | hgs |
| Mon, 04 Oct 2010 16:06:10 +0300 | |
| changeset 76 | cfea66083b62 |
| parent 50 | 377c906a8701 |
| child 78 | baacf668fe89 |
| 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; |
| 50 | 29 |
XQServiceUtil::toBackground(true); |
30 |
return app.exec(); |
|
| 37 | 31 |
} |
32 |