ximpfw/presence/srcpresenceoperations/presentitygroups/operationhandlepresentitygroupcontent.h
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     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:  Handle presentity group content operations
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef CPSCOPERATIONHANDLEPRESENTITYGROUPCONTENT_H
       
    19 #define CPSCOPERATIONHANDLEPRESENTITYGROUPCONTENT_H
       
    20 
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <ximpbase.h>
       
    24 
       
    25 #include "ximpoperationbase.h"
       
    26 #include "presencetypehelpers.h"
       
    27 #include "presenceoperationdefs.h"
       
    28 
       
    29 class CXIMPIdentityImp;
       
    30 
       
    31 /**
       
    32  * Handle presentity group related operations.
       
    33  *
       
    34  * @lib ximpoperations.lib
       
    35  * @since S60 v4.0
       
    36  */
       
    37 class COperationHandlePresentityGroupContent : public CXIMPOperationBase
       
    38     {
       
    39 
       
    40     public:
       
    41 
       
    42         IMPORT_C COperationHandlePresentityGroupContent();
       
    43 
       
    44         void ConstructL( const TDesC8& aParamPck );
       
    45 
       
    46         ~COperationHandlePresentityGroupContent();
       
    47 
       
    48     public: // from CXIMPOperationBase
       
    49 
       
    50         void ProcessL();
       
    51 
       
    52         void RequestCompletedL();
       
    53         TInt Type() const;
       
    54 
       
    55     private: // data
       
    56 
       
    57         /**
       
    58          * Array of group identities.
       
    59          * Owned.
       
    60          */
       
    61         CXIMPIdentityImp* iGroupId;
       
    62 
       
    63         /**
       
    64          * Array of group identities.
       
    65          * Owned.
       
    66          */
       
    67         RPrGrpMemInfoImpArray* iGroupMemberList;
       
    68 
       
    69     };
       
    70 
       
    71 
       
    72 #endif // CPSCOPERATIONHandlePresentityGroups_H