|
1 /* |
|
2 * Copyright (c) 2002-2007 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: An ADN store |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef VPBKSIMSTOREIMPL_CSDNSTORE_H |
|
21 #define VPBKSIMSTOREIMPL_CSDNSTORE_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "CBasicStore.h" |
|
25 |
|
26 namespace VPbkSimStoreImpl { |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * An ADN store that interferes with active FDN |
|
32 * |
|
33 */ |
|
34 NONSHARABLE_CLASS(CSdnStore) : public CBasicStore |
|
35 { |
|
36 public: // Constructors and destructor |
|
37 |
|
38 /** |
|
39 * Two-phased constructor. |
|
40 * @param aParams the store parameters |
|
41 * @return a new instance of this class |
|
42 */ |
|
43 static CSdnStore* NewL( TStoreParams& aParams ); |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 */ |
|
48 virtual ~CSdnStore(); |
|
49 |
|
50 public: // Functions from base classes |
|
51 |
|
52 /** |
|
53 * From CStoreBase |
|
54 */ |
|
55 const TDesC& ETelName() const; |
|
56 |
|
57 /** |
|
58 * From CStoreBase |
|
59 */ |
|
60 void CompleteSATRefresh( |
|
61 MSimRefreshCompletion& aSimRefreshCompletion ); |
|
62 |
|
63 /** |
|
64 * From CStoreBase |
|
65 */ |
|
66 TUint32 ElementaryFiles(); |
|
67 |
|
68 private: |
|
69 |
|
70 /** |
|
71 * C++ default constructor. |
|
72 */ |
|
73 CSdnStore( TStoreParams& aParams ); |
|
74 |
|
75 /** |
|
76 * By default Symbian 2nd phase constructor is private. |
|
77 */ |
|
78 void ConstructL(); |
|
79 }; |
|
80 |
|
81 } // namespace VPbkSimStoreImpl |
|
82 #endif // VPBKSIMSTOREIMPL_CSDNSTORE_H |
|
83 |
|
84 // End of File |