radioapp/radioapplication/win32_stubs/xqserviceutil.h
changeset 41 3a6b55c6390c
child 51 bbebb0235466
equal deleted inserted replaced
33:11b6825f0862 41:3a6b55c6390c
       
     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 #ifndef XQSERVICEUTIL_H
       
    19 #define XQSERVICEUTIL_H
       
    20 
       
    21 #include <QString>
       
    22 
       
    23 // THIS IS A STUB CLASS FOR WIN32 ENVIRONMENT!
       
    24 // It is only meant to compile, not to actually do anything
       
    25 
       
    26 namespace XQServiceUtil
       
    27 {
       
    28     void toBackground(bool) {}
       
    29     bool isEmbedded() { return false; }
       
    30     bool isService() { return false; }
       
    31     QString interfaceName() { return ""; }
       
    32     QString operationName() { return ""; }
       
    33 }
       
    34 
       
    35 #endif