realtimenetprots/sipfw/SIP/SigCompController/Common/inc/sipsigcomphandlerinitparams.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2004-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        : sipsigcomphandlerinitparams.h
       
    16 * Part of     : SIP SigComp Controller
       
    17 * Interface   : 
       
    18 * part of sip signaling compression plugin interface
       
    19 * Version     : 1.0
       
    20 *
       
    21 */
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 /**
       
    27  @internalComponent
       
    28 */
       
    29 
       
    30 
       
    31 #ifndef __SIPSIGCOMPHANDLERINITPARAMS_H__
       
    32 #define __SIPSIGCOMPHANDLERINITPARAMS_H__
       
    33 
       
    34 //  INCLUDES
       
    35 #include <e32base.h>
       
    36 
       
    37 
       
    38 //FORWARD DECLARATIONS
       
    39 class MLocalName;
       
    40 
       
    41 // CLASS DECLARATION
       
    42 
       
    43 /**
       
    44 *  Contains parameters needed for profile plug-ins.
       
    45 *  Contains reference to MLocalName
       
    46 *
       
    47 *  @lib none
       
    48 *  @since 2.0
       
    49 */
       
    50 class TSIPSigCompHandlerInitParams
       
    51 	{
       
    52 
       
    53 	public:  // Constructors and destructor
       
    54 
       
    55         /**
       
    56         * Constructor
       
    57 		* @param aSIP a handle to SIP server
       
    58 		* @param aSIPProfileObserver a sip profile observer
       
    59         */
       
    60 
       
    61 		TSIPSigCompHandlerInitParams
       
    62 			(MLocalName& aLocalName);
       
    63 
       
    64 
       
    65 
       
    66 	public: // Data
       
    67 
       
    68 
       
    69 		/**
       
    70 		* MLocalName
       
    71 		*/
       
    72 
       
    73 		MLocalName& iLocalName;
       
    74 
       
    75 	};
       
    76 
       
    77 #include "sipsigcomphandlerinitparams.inl"
       
    78 
       
    79 #endif // __SIPSIGCOMPHANDLERINITPARAMS_H__