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