|
1 /* |
|
2 * Copyright (c) 2002-2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __GENERIC_PARAM_CONSUMER_H__ |
|
20 #define __GENERIC_PARAM_CONSUMER_H__ |
|
21 |
|
22 // INCLUDES |
|
23 #include <AknDoc.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class CAiwGenericParamList; |
|
27 class CStreamStore; |
|
28 class CStreamDictionary; |
|
29 |
|
30 // --------------------------------------------------------- |
|
31 // @since Series60 3.0 |
|
32 // --------------------------------------------------------- |
|
33 // |
|
34 class CAiwGenericParamConsumer : public CAknDocument |
|
35 { |
|
36 public: |
|
37 IMPORT_C virtual void RestoreL(const CStreamStore& aStore, const CStreamDictionary& aStreamDic); |
|
38 IMPORT_C ~CAiwGenericParamConsumer(); |
|
39 |
|
40 protected: |
|
41 IMPORT_C CAiwGenericParamConsumer(CEikApplication& aApp); |
|
42 inline const CAiwGenericParamList* GetInputParameters() const; |
|
43 IMPORT_C void SetOutputParamsL(const CAiwGenericParamList* aList); |
|
44 |
|
45 private: |
|
46 CAiwGenericParamList* iParams; |
|
47 CStreamStore* iStore; |
|
48 CStreamDictionary* iStreamDic; |
|
49 }; |
|
50 |
|
51 |
|
52 inline const CAiwGenericParamList* CAiwGenericParamConsumer::GetInputParameters() const |
|
53 { |
|
54 return iParams; |
|
55 } |
|
56 |
|
57 |
|
58 #endif // __GENERIC_PARAM_CONSUMER_H__ |
|
59 |
|
60 // End of File |