|
1 /* |
|
2 * Copyright (c) 2007 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: Camera Indicator Resource Reader class* |
|
15 */ |
|
16 |
|
17 |
|
18 #ifndef CAMINDICATORRESOURCEREADER_H |
|
19 #define CAMINDICATORRESOURCEREADER_H |
|
20 |
|
21 // INCLUDES |
|
22 #include <barsread.h> |
|
23 |
|
24 // FORWARD DECLARATIONS |
|
25 class CCamIndicatorData; |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * Side Pane control |
|
31 */ |
|
32 class CCamIndicatorResourceReader : public CBase |
|
33 { |
|
34 public: // Constructors and destructor |
|
35 |
|
36 /** |
|
37 * Symbian OS two-phased constructor |
|
38 * @since 2.8 |
|
39 * @param aReader reference to resource reader |
|
40 */ |
|
41 static CCamIndicatorResourceReader* NewLC( TResourceReader& aReader ); |
|
42 |
|
43 /** |
|
44 * Destructor. |
|
45 */ |
|
46 virtual ~CCamIndicatorResourceReader(); |
|
47 |
|
48 private: |
|
49 /** |
|
50 * Symbian OS 2nd phase constructor. |
|
51 * @since 2.8 |
|
52 * @param aReader reference to resource reader |
|
53 */ |
|
54 void ConstructL( TResourceReader& aReader ); |
|
55 |
|
56 /** |
|
57 * C++ constructor |
|
58 * @since 2.8 |
|
59 */ |
|
60 CCamIndicatorResourceReader(); |
|
61 |
|
62 public: |
|
63 /** |
|
64 * return indicator data |
|
65 * @since 2.8 |
|
66 * @return array of indicator data |
|
67 */ |
|
68 |
|
69 CArrayPtrFlat<CCamIndicatorData>& IndicatorData(); |
|
70 |
|
71 private: // Data |
|
72 CArrayPtrFlat<CCamIndicatorData>* iIndicatorArray; |
|
73 }; |
|
74 |
|
75 #endif |
|
76 |
|
77 // End of File |