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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #ifndef __MFRAMEWORKSP_H__
19 #define __MFRAMEWORKSP_H__
25 // Forward class declarations
27 class MWAPEngineObserver;
28 class CXmlTaskCoordinator;
31 class CAttributeLookupTable;
32 class MWtaiPublicObserver;
34 //##ModelId=3B666FA40394
44 Intended Usage : Return a pointer to the engine observer (pointer
45 because it could be NULL).
47 @return A pointer to the MWAPEngineObsever object.
49 //##ModelId=3B666FA403C7
50 virtual MWAPEngineObserver* Observer() =0;
53 Intended Usage : Gets the Task Coordinator.
55 @return A reference to the Task Coordinater.
57 //##ModelId=3B666FA403C6
58 virtual CXmlTaskCoordinator& TaskCoordinator() =0;
61 Intended Usage : Gets WAP Local Context.
63 @return A reference to the WAP Local Context.
65 //##ModelId=3B666FA403BE
66 virtual CLocalContext& LocalContext() =0;
69 Intended Usage : Gets WAP Global Context.
71 @return A reference to the WAP Global Context.
73 //##ModelId=3B666FA403BD
74 virtual CWapGCtxClient& GlobalContext() =0;
77 Intended Usage : Gets the Attribute Look Up Table.
79 @return A reference to the Attribute Look Up Table.
81 //##ModelId=3B666FA403BC
82 virtual CAttributeLookupTable& AttributeLookup() =0;
87 @return A reference to the WtaiPublic observer
89 //##ModelId=3B666FA403B2
90 virtual MWtaiPublicObserver& WtaiPublicObserver() =0;
94 #endif // __MFRAMEWORKSP_H__