ximpfw/presence/srcpresenceoperations/presencepublishing/operationsubscribeownpresence.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:  Presence interest registration operation
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef CPSCOPERATIONSUBSCRIBEOWNPRESENCE_H
       
    19 #define CPSCOPERATIONSUBSCRIBEOWNPRESENCE_H
       
    20 
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <ximpbase.h>
       
    24 
       
    25 #include "ximpoperationbase.h"
       
    26 #include "ownpresencesubscriptionitem.h"
       
    27 #include "presenceoperationdefs.h"
       
    28 
       
    29 /**
       
    30  * Presence interest registration operation.
       
    31  *
       
    32  * @lib ximpoperations.lib
       
    33  * @since S60 v4.0
       
    34  */
       
    35 class COperationSubscribeOwnPresence : public CXIMPOperationBase
       
    36     {
       
    37 
       
    38     public:
       
    39 
       
    40         IMPORT_C COperationSubscribeOwnPresence();
       
    41 
       
    42         void ConstructL( const TDesC8& aParamPck );
       
    43 
       
    44         ~COperationSubscribeOwnPresence();
       
    45 
       
    46 
       
    47     public: // from CXIMPOperationBase
       
    48 
       
    49         void ProcessL();
       
    50 
       
    51         void RequestCompletedL();
       
    52 
       
    53         TInt Type() const;
       
    54         
       
    55     private: // Helper methods
       
    56     
       
    57         /**
       
    58          * Synthesise event after completion
       
    59          */
       
    60         void SynthesiseEventL();      
       
    61 
       
    62     private: // data
       
    63 
       
    64         /**
       
    65          * Presence info filter having new presence info filter for context.
       
    66          * Own.
       
    67          */
       
    68         CPresenceInfoFilterImp* iPif;
       
    69         CPresenceInfoFilterImp* iMergedPif;
       
    70         
       
    71         /**
       
    72          *
       
    73          */
       
    74         COwnPresenceSubscriptionItem::TSubscriptionStatus iSubscriptionStatus;
       
    75         
       
    76         /**
       
    77          *
       
    78          */
       
    79         COwnPresenceSubscriptionItem* iOwnPresence;
       
    80         
       
    81         /**
       
    82          * Don't force event.
       
    83          */
       
    84         TBool iDoNotForce;
       
    85     };
       
    86 
       
    87 
       
    88 #endif // CPSCOPERATIONSUBSCRIBEOWNPRESENCE_H