instantmessagesalert/tsrc/testinstantmsgalert/src/stubs/s_presencewatching.h
branchRCL_3
changeset 28 3104fc151679
parent 27 2b7283837edb
child 29 9a48e301e94b
equal deleted inserted replaced
27:2b7283837edb 28:3104fc151679
     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_presencewatching.h
       
    15 *
       
    16 */
       
    17 #ifndef MXIMPFWPRESENCEWATCHINGSTUB_H
       
    18 #define MXIMPFWPRESENCEWATCHINGSTUB_H
       
    19 
       
    20 #include <presencewatching.h>
       
    21 
       
    22 class MPresenceWatchingStub : public MPresenceWatching
       
    23     {
       
    24     TXIMPRequestId SubscribePresentityPresenceL(
       
    25                     const MXIMPIdentity& aPresentityId,
       
    26                     const MPresenceInfoFilter& aPif );
       
    27 
       
    28     TXIMPRequestId UnsubscribePresentityPresenceL(
       
    29                     const MXIMPIdentity& aPresentityId );
       
    30     
       
    31     TXIMPRequestId SubscribePresentityGroupMembersPresenceL(
       
    32                     const MXIMPIdentity& aGroupId,
       
    33                     const MPresenceInfoFilter& aPif );
       
    34 
       
    35     TXIMPRequestId UnsubscribePresentityGroupMembersPresenceL(
       
    36                     const MXIMPIdentity& aGroupId );
       
    37     
       
    38 
       
    39     const TAny* GetInterface(
       
    40                         TInt32 aInterfaceId,
       
    41                         TIfGetOps aOps ) const;
       
    42 
       
    43     TAny* GetInterface(
       
    44                         TInt32 aInterfaceId,
       
    45                         TIfGetOps aOps );
       
    46 
       
    47     TInt32 GetInterfaceId() const;
       
    48     };
       
    49 
       
    50 
       
    51 
       
    52 #endif // MXIMPFWPRESENCEWATCHINGSTUB_H
       
    53 
       
    54 
       
    55