epoc32/include/mframeworksp.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
     1.1 --- a/epoc32/include/mframeworksp.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/mframeworksp.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,94 @@
     1.4 -mframeworksp.h
     1.5 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +// All rights reserved.
     1.7 +// This component and the accompanying materials are made available
     1.8 +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.9 +// which accompanies this distribution, and is available
    1.10 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 +//
    1.12 +// Initial Contributors:
    1.13 +// Nokia Corporation - initial contribution.
    1.14 +//
    1.15 +// Contributors:
    1.16 +//
    1.17 +// Description:
    1.18 +// MMFrameworkSP.h
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#ifndef __MFRAMEWORKSP_H__
    1.23 +#define __MFRAMEWORKSP_H__
    1.24 +
    1.25 +// System includes
    1.26 +//
    1.27 +#include <e32def.h>
    1.28 +
    1.29 +// Forward class declarations
    1.30 +//
    1.31 +class MWAPEngineObserver;
    1.32 +class CXmlTaskCoordinator;
    1.33 +class CLocalContext;
    1.34 +class CWapGCtxClient;
    1.35 +class CAttributeLookupTable;
    1.36 +class MWtaiPublicObserver;
    1.37 +
    1.38 +//##ModelId=3B666FA40394
    1.39 +class MFrameworkSP
    1.40 +/**
    1.41 +@publishedAll
    1.42 +@deprecated
    1.43 +*/
    1.44 +	{
    1.45 +public:
    1.46 +
    1.47 +/**
    1.48 +	Intended Usage	:	Return a pointer to the engine observer (pointer 
    1.49 +	because it could be NULL).
    1.50 +	@since			6.0
    1.51 +	@return			A pointer to the MWAPEngineObsever object.
    1.52 + */
    1.53 +	//##ModelId=3B666FA403C7
    1.54 +	virtual MWAPEngineObserver* Observer() =0;
    1.55 +
    1.56 +/**
    1.57 +	Intended Usage	:	Gets the Task Coordinator.
    1.58 +	@since			6.0
    1.59 +	@return			A reference to the Task Coordinater.
    1.60 + */
    1.61 +	//##ModelId=3B666FA403C6
    1.62 +	virtual CXmlTaskCoordinator& TaskCoordinator() =0;
    1.63 +	
    1.64 +/**
    1.65 +	Intended Usage	:	Gets WAP Local Context.
    1.66 +	@since			6.0
    1.67 +	@return			A reference to the WAP Local Context. 
    1.68 + */
    1.69 +	//##ModelId=3B666FA403BE
    1.70 +	virtual CLocalContext& LocalContext() =0;
    1.71 +
    1.72 +/**
    1.73 +	Intended Usage	:	Gets WAP Global Context.
    1.74 +	@since			6.0
    1.75 +	@return			A reference to the WAP Global Context. 
    1.76 + */
    1.77 +	//##ModelId=3B666FA403BD
    1.78 +	virtual CWapGCtxClient& GlobalContext() =0;
    1.79 +
    1.80 +/**
    1.81 +	Intended Usage	:	Gets the Attribute Look Up Table.
    1.82 +	@since			6.0
    1.83 +	@return			A reference to the Attribute Look Up Table.
    1.84 + */
    1.85 +	//##ModelId=3B666FA403BC
    1.86 +	virtual CAttributeLookupTable& AttributeLookup() =0;
    1.87 +
    1.88 +/**
    1.89 +	Intended Usage	:	
    1.90 +	@since			6.0
    1.91 +	@return			A reference to the WtaiPublic observer 
    1.92 + */
    1.93 +	//##ModelId=3B666FA403B2
    1.94 +	virtual MWtaiPublicObserver& WtaiPublicObserver() =0;
    1.95 +
    1.96 +	};
    1.97 +
    1.98 +#endif	// __MFRAMEWORKSP_H__