realtimenetprots/sipfw/SigComp/SigCompEngine/inc/SigCompStateMgr.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2003-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:
       
    15 * Name        : SigCompStateMgr.h
       
    16 * Part of     : SigComp / state manager
       
    17 * Interface   : 
       
    18 * State manager external interface
       
    19 * Version     : 1.0
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 /**
       
    27  @internalComponent
       
    28 */
       
    29 
       
    30 
       
    31 #ifndef SIGCOMPSTATEMGR_H
       
    32 #define SIGCOMPSTATEMGR_H
       
    33 
       
    34 //  INCLUDES
       
    35 #include <e32base.h>
       
    36  
       
    37 class TStateItem;
       
    38 
       
    39 // CLASS DECLARATION
       
    40 
       
    41 /**
       
    42 *  State manager interface.
       
    43 *  
       
    44 *
       
    45 *  @lib sigcomp
       
    46 */
       
    47 
       
    48 class MSigCompStateMgr
       
    49     {
       
    50     public:
       
    51        /**
       
    52         * Finds state item of a given hash.
       
    53         * 
       
    54         * @param aPartialIdentifier hash ID of the state item we are looking
       
    55         *                           for.
       
    56         * 
       
    57         * @return state item, or null if no state item was found
       
    58         */
       
    59         virtual TStateItem* FindStateItem(
       
    60                                          const TDesC8& aPartialIdentifier) = 0;
       
    61     };
       
    62 
       
    63 #endif
       
    64             
       
    65 // End of File