24
|
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 |
// This file contains a stubbed implementation of TFeatureEntry.
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
#include <featmgr/featurenotifier.h>
|
|
19 |
|
|
20 |
EXPORT_C CFeatureNotifier* CFeatureNotifier::NewL( MFeatureObserver& /*aObserver */)
|
|
21 |
{
|
|
22 |
return NULL;
|
|
23 |
}
|
|
24 |
|
|
25 |
EXPORT_C CFeatureNotifier::~CFeatureNotifier()
|
|
26 |
{
|
|
27 |
}
|
|
28 |
|
|
29 |
EXPORT_C TInt CFeatureNotifier::NotifyRequest( TUid /*aFeature*/ )
|
|
30 |
{
|
|
31 |
return KErrNone;
|
|
32 |
}
|
|
33 |
|
|
34 |
EXPORT_C TInt CFeatureNotifier::NotifyRequest( RFeatureUidArray& /*aFeatures*/ )
|
|
35 |
{
|
|
36 |
return KErrNone;
|
|
37 |
}
|
|
38 |
|
|
39 |
EXPORT_C TInt CFeatureNotifier::NotifyCancel( TUid /*aFeature*/ )
|
|
40 |
{
|
|
41 |
return KErrNone;
|
|
42 |
}
|
|
43 |
|
|
44 |
EXPORT_C TInt CFeatureNotifier::NotifyCancelAll()
|
|
45 |
{
|
|
46 |
return KErrNone;
|
|
47 |
}
|
|
48 |
|
|
49 |
void CFeatureNotifier::RunL()
|
|
50 |
{
|
|
51 |
}
|
|
52 |
|
|
53 |
TInt CFeatureNotifier::RunError( TInt /*aError*/ )
|
|
54 |
{
|
|
55 |
return KErrNone;
|
|
56 |
}
|
|
57 |
|
|
58 |
void CFeatureNotifier::DoCancel()
|
|
59 |
{
|
|
60 |
}
|
|
61 |
|