applayerprotocols/wappushsupport/inc/MFrameworkSP.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 19 Aug 2010 10:27:19 +0300
branchRCL_3
changeset 37 5f1cd966e0d9
parent 0 b16258d2340f
permissions -rw-r--r--
Revision: 201029 Kit: 201033

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// MMFrameworkSP.h
// 
//

#ifndef __MFRAMEWORKSP_H__
#define __MFRAMEWORKSP_H__

// System includes
//
#include <e32def.h>

// Forward class declarations
//
class MWAPEngineObserver;
class CXmlTaskCoordinator;
class CLocalContext;
class CWapGCtxClient;
class CAttributeLookupTable;
class MWtaiPublicObserver;

//##ModelId=3B666FA40394
class MFrameworkSP
/**
@publishedAll
@deprecated
*/
	{
public:

/**
	Intended Usage	:	Return a pointer to the engine observer (pointer 
	because it could be NULL).
	@since			6.0
	@return			A pointer to the MWAPEngineObsever object.
 */
	//##ModelId=3B666FA403C7
	virtual MWAPEngineObserver* Observer() =0;

/**
	Intended Usage	:	Gets the Task Coordinator.
	@since			6.0
	@return			A reference to the Task Coordinater.
 */
	//##ModelId=3B666FA403C6
	virtual CXmlTaskCoordinator& TaskCoordinator() =0;
	
/**
	Intended Usage	:	Gets WAP Local Context.
	@since			6.0
	@return			A reference to the WAP Local Context. 
 */
	//##ModelId=3B666FA403BE
	virtual CLocalContext& LocalContext() =0;

/**
	Intended Usage	:	Gets WAP Global Context.
	@since			6.0
	@return			A reference to the WAP Global Context. 
 */
	//##ModelId=3B666FA403BD
	virtual CWapGCtxClient& GlobalContext() =0;

/**
	Intended Usage	:	Gets the Attribute Look Up Table.
	@since			6.0
	@return			A reference to the Attribute Look Up Table.
 */
	//##ModelId=3B666FA403BC
	virtual CAttributeLookupTable& AttributeLookup() =0;

/**
	Intended Usage	:	
	@since			6.0
	@return			A reference to the WtaiPublic observer 
 */
	//##ModelId=3B666FA403B2
	virtual MWtaiPublicObserver& WtaiPublicObserver() =0;

	};

#endif	// __MFRAMEWORKSP_H__