uiservicetab/vimpstengine/tsrc/vimpstengine_ut/src/stubs/s_servicepresenceinfo.h
branchRCL_3
changeset 29 9a48e301e94b
parent 0 5e5d6b214f4f
equal deleted inserted replaced
28:3104fc151679 29:9a48e301e94b
       
     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: s_servicepresenceinfo.h
       
    15 *
       
    16 */
       
    17 #ifndef MXIMPFWSERVICEPRESENCEINFOSTUB_H
       
    18 #define MXIMPFWSERVICEPRESENCEINFOSTUB_H
       
    19 
       
    20 #include <servicepresenceinfo.h>
       
    21 
       
    22 class MServicePresenceInfoStub : public MServicePresenceInfo
       
    23     {
       
    24     const TPtrC8 ServiceType() const;
       
    25     
       
    26     void SetServiceTypeL( const TDesC8& aServiceType );
       
    27     
       
    28     const MPresenceInfoFieldCollection& Fields() const;
       
    29     
       
    30     MPresenceInfoFieldCollection& Fields();
       
    31 
       
    32     const TAny* GetInterface(
       
    33                         TInt32 aInterfaceId,
       
    34                         TIfGetOps aOps ) const;
       
    35 
       
    36     TAny* GetInterface(
       
    37                         TInt32 aInterfaceId,
       
    38                         TIfGetOps aOps );
       
    39 
       
    40     TInt32 GetInterfaceId() const;
       
    41     };
       
    42 
       
    43 
       
    44 #endif //MXIMPFWSERVICEPRESENCEINFO_H
       
    45 
       
    46 
       
    47