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 #include <QDebug> |
|
18 #include <smcmockclassincludes.h> |
|
19 #include "psetcallwaitingwrapper.h" |
|
20 #include "psetcallwaitingwrapper_p.h" |
|
21 |
|
22 // ============================ MEMBER FUNCTIONS =============================== |
|
23 |
|
24 // ----------------------------------------------------------------------------- |
|
25 // PSetCallWaitingWrapper::PSetCallWaitingWrapper |
|
26 // ----------------------------------------------------------------------------- |
|
27 // |
|
28 PSetCallWaitingWrapper::PSetCallWaitingWrapper( |
|
29 CPsetContainer & psetContainer, |
|
30 QObject * parent ) : QObject( parent ) |
|
31 { |
|
32 Q_UNUSED(psetContainer); |
|
33 } |
|
34 |
|
35 |
|
36 // ----------------------------------------------------------------------------- |
|
37 // PSetCallWaitingWrapper::~PSetCallWaitingWrapper |
|
38 // ----------------------------------------------------------------------------- |
|
39 // |
|
40 PSetCallWaitingWrapper::~PSetCallWaitingWrapper( ) |
|
41 { |
|
42 |
|
43 } |
|
44 |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // PSetCallWaitingWrapper::setCallWaiting |
|
48 // ----------------------------------------------------------------------------- |
|
49 // |
|
50 void PSetCallWaitingWrapper::setCallWaiting( |
|
51 PsCallWaitingCommand aSetting, |
|
52 int aBasicServiceGroup ) |
|
53 { |
|
54 SMC_MOCK_METHOD2( void, PsCallWaitingCommand, aSetting, |
|
55 int, aBasicServiceGroup ) |
|
56 } |
|
57 |
|
58 |
|
59 // ----------------------------------------------------------------------------- |
|
60 // PSetCallWaitingWrapper::getCallWaitingStatus |
|
61 // ----------------------------------------------------------------------------- |
|
62 // |
|
63 void PSetCallWaitingWrapper::getCallWaitingStatus( ) |
|
64 { |
|
65 SMC_MOCK_METHOD0( void ) |
|
66 } |
|
67 |
|
68 |
|
69 // ----------------------------------------------------------------------------- |
|
70 // PSetCallWaitingWrapper::cancelProcess |
|
71 // ----------------------------------------------------------------------------- |
|
72 // |
|
73 void PSetCallWaitingWrapper::cancelProcess( ) |
|
74 { |
|
75 SMC_MOCK_METHOD0( void ) |
|
76 } |
|