33
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2006 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: Declaration of CPSetSubscriberIdCheck class.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef CPSETSIMCHECK_H
|
|
20 |
#define CPSETSIMCHECK_H
|
|
21 |
|
|
22 |
// INCLUDES
|
|
23 |
#include <e32base.h>
|
|
24 |
#include <etelmm.h>
|
|
25 |
|
|
26 |
// FORWARD DECLARATIONS
|
|
27 |
|
|
28 |
// CLASS DECLARATION
|
|
29 |
|
|
30 |
/**
|
|
31 |
* Class is used for checking SIM imsi.
|
|
32 |
*
|
|
33 |
* @lib phonesettings
|
|
34 |
* @since S60 v5.1
|
|
35 |
*/
|
|
36 |
NONSHARABLE_CLASS( CPSetSubscriberIdCheck ): public CBase
|
|
37 |
{
|
|
38 |
public:
|
|
39 |
|
|
40 |
/**
|
|
41 |
* Symbian OS 2-phase Constructor.
|
|
42 |
* @return Created CPSetSIMCheck object.
|
|
43 |
*/
|
|
44 |
static CPSetSubscriberIdCheck* NewL();
|
|
45 |
|
|
46 |
/*
|
|
47 |
* Destructor.
|
|
48 |
*/
|
|
49 |
~CPSetSubscriberIdCheck();
|
|
50 |
|
|
51 |
public:
|
|
52 |
|
|
53 |
TBool DoesSIMSupportDualActivation();
|
|
54 |
|
|
55 |
private: // constructors
|
|
56 |
|
|
57 |
/**
|
|
58 |
* Default constructor
|
|
59 |
*/
|
|
60 |
CPSetSubscriberIdCheck();
|
|
61 |
|
|
62 |
private:
|
|
63 |
|
|
64 |
RMobilePhone::TMobilePhoneSubscriberId iImsi;
|
|
65 |
};
|
|
66 |
|
|
67 |
#endif // CPSETSIMCHECK_H
|
|
68 |
|
|
69 |
// End of File
|