applayerprotocols/wappushsupport/inc/MFrameworkSP.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // MMFrameworkSP.h
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef __MFRAMEWORKSP_H__
       
    19 #define __MFRAMEWORKSP_H__
       
    20 
       
    21 // System includes
       
    22 //
       
    23 #include <e32def.h>
       
    24 
       
    25 // Forward class declarations
       
    26 //
       
    27 class MWAPEngineObserver;
       
    28 class CXmlTaskCoordinator;
       
    29 class CLocalContext;
       
    30 class CWapGCtxClient;
       
    31 class CAttributeLookupTable;
       
    32 class MWtaiPublicObserver;
       
    33 
       
    34 //##ModelId=3B666FA40394
       
    35 class MFrameworkSP
       
    36 /**
       
    37 @publishedAll
       
    38 @deprecated
       
    39 */
       
    40 	{
       
    41 public:
       
    42 
       
    43 /**
       
    44 	Intended Usage	:	Return a pointer to the engine observer (pointer 
       
    45 	because it could be NULL).
       
    46 	@since			6.0
       
    47 	@return			A pointer to the MWAPEngineObsever object.
       
    48  */
       
    49 	//##ModelId=3B666FA403C7
       
    50 	virtual MWAPEngineObserver* Observer() =0;
       
    51 
       
    52 /**
       
    53 	Intended Usage	:	Gets the Task Coordinator.
       
    54 	@since			6.0
       
    55 	@return			A reference to the Task Coordinater.
       
    56  */
       
    57 	//##ModelId=3B666FA403C6
       
    58 	virtual CXmlTaskCoordinator& TaskCoordinator() =0;
       
    59 	
       
    60 /**
       
    61 	Intended Usage	:	Gets WAP Local Context.
       
    62 	@since			6.0
       
    63 	@return			A reference to the WAP Local Context. 
       
    64  */
       
    65 	//##ModelId=3B666FA403BE
       
    66 	virtual CLocalContext& LocalContext() =0;
       
    67 
       
    68 /**
       
    69 	Intended Usage	:	Gets WAP Global Context.
       
    70 	@since			6.0
       
    71 	@return			A reference to the WAP Global Context. 
       
    72  */
       
    73 	//##ModelId=3B666FA403BD
       
    74 	virtual CWapGCtxClient& GlobalContext() =0;
       
    75 
       
    76 /**
       
    77 	Intended Usage	:	Gets the Attribute Look Up Table.
       
    78 	@since			6.0
       
    79 	@return			A reference to the Attribute Look Up Table.
       
    80  */
       
    81 	//##ModelId=3B666FA403BC
       
    82 	virtual CAttributeLookupTable& AttributeLookup() =0;
       
    83 
       
    84 /**
       
    85 	Intended Usage	:	
       
    86 	@since			6.0
       
    87 	@return			A reference to the WtaiPublic observer 
       
    88  */
       
    89 	//##ModelId=3B666FA403B2
       
    90 	virtual MWtaiPublicObserver& WtaiPublicObserver() =0;
       
    91 
       
    92 	};
       
    93 
       
    94 #endif	// __MFRAMEWORKSP_H__