deviceupdatesui/deviceupdatesqtsp/src/DmTelServiceHandler.cpp
changeset 18 7d11f9a6646f
child 67 fdbfe0a95492
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
       
     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  */
       
    17 
       
    18 #include "DmTelServiceHandler.h"
       
    19 #include <hbapplication.h>
       
    20 
       
    21 DmTelServiceHandler::DmTelServiceHandler(QObject *parent):
       
    22     XQServiceProvider("com.nokia.services.devicemanager", parent)
       
    23 {
       
    24     publishAll();
       
    25 }
       
    26 
       
    27 DmTelServiceHandler::~DmTelServiceHandler()
       
    28 {
       
    29 }
       
    30 
       
    31 void DmTelServiceHandler::showVersionNumber()
       
    32 {
       
    33 // Create DM UI Process
       
    34 RProcess rp;
       
    35 TInt err = rp.Create(KDMUIProcess,KNullDesC);
       
    36 User::LeaveIfError(err);  
       
    37 rp.SetPriority(EPriorityForeground);
       
    38 rp.Resume();    // logon OK - start the server
       
    39 
       
    40 // quit the service provider app.
       
    41 //QCoreApplication::quit();	
       
    42 QCoreApplication::exit(0);		  
       
    43 }