ximpfw/presence/srcpresenceoperations/presentitygroups/operationremovepresentitygroupmember.h
changeset 51 61fad867f68e
equal deleted inserted replaced
-1:000000000000 51:61fad867f68e
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Remove Presentity Group Member operation
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef PSCOPERATIONREMOVEPRESENTITYGROUPMEMBER_H
       
    19 #define PSCOPERATIONREMOVEPRESENTITYGROUPMEMBER_H
       
    20 
       
    21 #include <e32base.h>
       
    22 #include <ximpbase.h>
       
    23 
       
    24 #include "ximpoperationbase.h"
       
    25 #include "presenceoperationdefs.h"
       
    26 
       
    27 class CXIMPIdentityImp;
       
    28 
       
    29 /**
       
    30  * Remove presentity group member operation
       
    31  *
       
    32  * @lib presenceoperation.lib
       
    33  * @since S60 v4.0
       
    34  */
       
    35 class COperationRemovePresentityGroupMember : public CXIMPOperationBase
       
    36     {
       
    37 
       
    38     public:
       
    39 
       
    40         IMPORT_C COperationRemovePresentityGroupMember();
       
    41 
       
    42         void ConstructL( const TDesC8& aParamPck );
       
    43 
       
    44         ~COperationRemovePresentityGroupMember();
       
    45 
       
    46     public: // from CXIMPOperationBase
       
    47 
       
    48         void ProcessL();
       
    49 
       
    50         void RequestCompletedL();
       
    51 
       
    52         TInt Type() const;
       
    53 
       
    54     private: // data
       
    55 
       
    56         /**
       
    57          * Group id
       
    58          * Own.
       
    59          */
       
    60         CXIMPIdentityImp* iGroupId;
       
    61         CXIMPIdentityImp* iMemberId;
       
    62     };
       
    63 
       
    64 
       
    65 #endif // PSCOPERATIONREMOVEPRESENTITYGROUPMEMBER_H