equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2009 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 #include "cxefakefeaturemanager.h" |
|
19 |
|
20 CxeFakeFeatureManager::CxeFakeFeatureManager() |
|
21 { |
|
22 } |
|
23 |
|
24 CxeFakeFeatureManager::~CxeFakeFeatureManager() |
|
25 { |
|
26 } |
|
27 |
|
28 CxeError::Id CxeFakeFeatureManager::isFeatureSupported(const QString& key, bool& value) const |
|
29 { |
|
30 Q_UNUSED(key); |
|
31 |
|
32 value = true; |
|
33 return CxeError::None; |
|
34 } |
|
35 |
|
36 CxeError::Id CxeFakeFeatureManager::configuredValues(const QString& key,QList<int>& values) |
|
37 { |
|
38 Q_UNUSED(key); |
|
39 |
|
40 values.clear(); |
|
41 // appending values for test cases |
|
42 values.append(10); |
|
43 values.append(20); |
|
44 return CxeError::None; |
|
45 } |
|
46 |
|
47 |
|