Msrp/MsrpHeader/inc/CMSRPTlsPtrs.h
branchMSRP_FrameWork
changeset 25 505ad3f0ce5c
equal deleted inserted replaced
22:f1578314b8da 25:505ad3f0ce5c
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 * Contributors:
       
    11 *
       
    12 * Description:
       
    13 * MSRP Implementation
       
    14 *
       
    15 */
       
    16 
       
    17 #ifndef CMSRPTLSPTRS_H
       
    18 #define CMSRPTLSPTRS_H
       
    19 
       
    20 // EXTERNAL INCLUDES
       
    21 #include <e32base.h>
       
    22 
       
    23 // FORWARD DECLARATIONS
       
    24 class CMSRPStrings;
       
    25 
       
    26 /*
       
    27 * CLASS DEFINITION
       
    28 */
       
    29 class CMSRPTlsPtrs : public CBase
       
    30     {
       
    31 	public:
       
    32 	    
       
    33         /**
       
    34         * Constructor.
       
    35 		* @param aStrings new CMSRPStrings object
       
    36         */
       
    37 	    CMSRPTlsPtrs( CMSRPStrings* aStrings );
       
    38         /**
       
    39         * Destructor.
       
    40         */
       
    41 		~CMSRPTlsPtrs();
       
    42 
       
    43         /**
       
    44         * Constructor.
       
    45         */
       
    46 		void DestroyStrings();
       
    47 
       
    48 	public:
       
    49 	
       
    50         /**
       
    51         * Gives MsrpStrings object
       
    52         */
       
    53 		CMSRPStrings* GetMsrpString();
       
    54 		
       
    55 	private:
       
    56 
       
    57         /**
       
    58         * Constructor.
       
    59         */
       
    60 		CMSRPTlsPtrs();    
       
    61 
       
    62 	private: // data
       
    63 	
       
    64 		// CMSRPStrings object
       
    65 	    CMSRPStrings* iStrings;
       
    66 
       
    67     };
       
    68 
       
    69 #endif // CMSRPTLSPTRS_H
       
    70 
       
    71 // End of File