51
|
1 |
/** Copyright (c) 2010 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 the License "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 |
#include <QDebug>
|
|
17 |
#include <smcmockclassincludes.h>
|
|
18 |
#include "dialpadsymbianwrapper.h"
|
|
19 |
|
|
20 |
// ============================ MEMBER FUNCTIONS ===============================
|
|
21 |
|
|
22 |
// -----------------------------------------------------------------------------
|
|
23 |
// DialpadSymbianWrapper::DialpadSymbianWrapper
|
|
24 |
// -----------------------------------------------------------------------------
|
|
25 |
//
|
|
26 |
DialpadSymbianWrapper::DialpadSymbianWrapper(
|
|
27 |
QObject * parent ) : d_ptr(0)
|
|
28 |
//:
|
|
29 |
//QObject( /*parent*/ )
|
|
30 |
{
|
|
31 |
|
|
32 |
}
|
|
33 |
|
|
34 |
|
|
35 |
// -----------------------------------------------------------------------------
|
|
36 |
// DialpadSymbianWrapper::~DialpadSymbianWrapper
|
|
37 |
// -----------------------------------------------------------------------------
|
|
38 |
//
|
|
39 |
DialpadSymbianWrapper::~DialpadSymbianWrapper( )
|
|
40 |
{
|
|
41 |
|
|
42 |
}
|
|
43 |
|
|
44 |
|
|
45 |
// -----------------------------------------------------------------------------
|
|
46 |
// DialpadSymbianWrapper::getMailboxNumber
|
|
47 |
// -----------------------------------------------------------------------------
|
|
48 |
//
|
|
49 |
int DialpadSymbianWrapper::getMailboxNumber(
|
|
50 |
QString & vmbxNumber )
|
|
51 |
{
|
|
52 |
SMC_MOCK_METHOD1( int, QString &, vmbxNumber )
|
|
53 |
}
|
|
54 |
|
|
55 |
|
|
56 |
// -----------------------------------------------------------------------------
|
|
57 |
// DialpadSymbianWrapper::getVideoMailboxNumber
|
|
58 |
// -----------------------------------------------------------------------------
|
|
59 |
//
|
|
60 |
int DialpadSymbianWrapper::getVideoMailboxNumber(
|
|
61 |
QString & vmbxNumber )
|
|
62 |
{
|
|
63 |
SMC_MOCK_METHOD1( int, QString &, vmbxNumber )
|
|
64 |
}
|
|
65 |
|
|
66 |
|
|
67 |
// -----------------------------------------------------------------------------
|
|
68 |
// DialpadSymbianWrapper::defineMailboxNumber
|
|
69 |
// -----------------------------------------------------------------------------
|
|
70 |
//
|
|
71 |
int DialpadSymbianWrapper::defineMailboxNumber(
|
|
72 |
QString & vmbxNumber )
|
|
73 |
{
|
|
74 |
SMC_MOCK_METHOD1( int, QString &, vmbxNumber )
|
|
75 |
}
|
|
76 |
|
|
77 |
|
|
78 |
// -----------------------------------------------------------------------------
|
|
79 |
// DialpadSymbianWrapper::defineVideoMailboxNumber
|
|
80 |
// -----------------------------------------------------------------------------
|
|
81 |
//
|
|
82 |
int DialpadSymbianWrapper::defineVideoMailboxNumber(
|
|
83 |
QString & vmbxNumber )
|
|
84 |
{
|
|
85 |
SMC_MOCK_METHOD1( int, QString &, vmbxNumber )
|
|
86 |
}
|
|
87 |
|
|
88 |
|
|
89 |
// -----------------------------------------------------------------------------
|
|
90 |
// DialpadSymbianWrapper::changeSilentModeState
|
|
91 |
// -----------------------------------------------------------------------------
|
|
92 |
//
|
|
93 |
bool DialpadSymbianWrapper::changeSilentModeState( )
|
|
94 |
{
|
|
95 |
SMC_MOCK_METHOD0( bool )
|
|
96 |
}
|
|
97 |
|
|
98 |
|