equal
deleted
inserted
replaced
|
1 // Copyright (c) 2007-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 // tfeatureentry.cpp |
|
15 // This file contains a stubbed implementation of TFeatureEntry. |
|
16 // |
|
17 // |
|
18 |
|
19 #include <featmgr/featurecmn.h> |
|
20 |
|
21 EXPORT_C TFeatureEntry::TFeatureEntry( TUid /*aFeature*/ ) |
|
22 { |
|
23 } |
|
24 |
|
25 EXPORT_C TFeatureEntry::TFeatureEntry( TUid /*aFeature*/, TBitFlags32 /*aFlags*/, TUint32 /*aData */) |
|
26 { |
|
27 } |
|
28 |
|
29 EXPORT_C TUid TFeatureEntry::FeatureUid() const |
|
30 { |
|
31 return TUid(); |
|
32 } |
|
33 |
|
34 |
|
35 EXPORT_C TBitFlags32 TFeatureEntry::FeatureFlags() const |
|
36 { |
|
37 return 0; |
|
38 } |
|
39 |
|
40 |
|
41 EXPORT_C TUint32 TFeatureEntry::FeatureData() const |
|
42 { |
|
43 return 0; |
|
44 } |
|
45 |
|
46 |
|
47 EXPORT_C TFeatureEntry::TFeatureEntry() |
|
48 { |
|
49 } |
|
50 |