equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 /** |
|
18 @file |
|
19 @internalComponent |
|
20 */ |
|
21 |
|
22 #ifndef OMXILINDEXMANAGER_H |
|
23 #define OMXILINDEXMANAGER_H |
|
24 |
|
25 #include <e32base.h> |
|
26 |
|
27 // Forward declarations |
|
28 |
|
29 |
|
30 class COmxILIndexManager : public CBase |
|
31 { |
|
32 |
|
33 public: |
|
34 |
|
35 inline ~COmxILIndexManager(); |
|
36 |
|
37 inline void InsertParamIndexL(TUint aParamIndex); |
|
38 |
|
39 inline TInt FindParamIndex(TUint aParamIndex) const; |
|
40 |
|
41 inline void InsertConfigIndexL(TUint aConfigIndex); |
|
42 |
|
43 inline TInt FindConfigIndex(TUint aConfigIndex) const; |
|
44 |
|
45 inline RArray<TUint>& ManagedParamIndexes(); |
|
46 |
|
47 inline RArray<TUint>& ManagedConfigIndexes(); |
|
48 protected: |
|
49 |
|
50 inline COmxILIndexManager(); |
|
51 |
|
52 protected: |
|
53 |
|
54 RArray<TUint> iManagedOmxParamIndexes; |
|
55 RArray<TUint> iManagedOmxConfigIndexes; |
|
56 |
|
57 }; |
|
58 |
|
59 #include "omxilindexmanager.inl" |
|
60 |
|
61 #endif // OMXILINDEXMANAGER_H |
|
62 |