diff -r 2fe1408b6811 -r e1b950c65cb4 epoc32/include/mw/mframeworksp.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/epoc32/include/mw/mframeworksp.h Wed Mar 31 12:27:01 2010 +0100 @@ -0,0 +1,94 @@ +// 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// MMFrameworkSP.h +// +// + +#ifndef __MFRAMEWORKSP_H__ +#define __MFRAMEWORKSP_H__ + +// System includes +// +#include + +// 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__