phonebookengines/VirtualPhonebook/VPbkSimStoreImpl/inc/CFdnStore.h
branchRCL_3
changeset 63 f4a778e096c2
parent 0 e686773b3f54
equal deleted inserted replaced
62:5b6f26637ad3 63:f4a778e096c2
       
     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 FDN store
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef VPBKSIMSTOREIMPL_CFDNSTORE_H
       
    21 #define VPBKSIMSTOREIMPL_CFDNSTORE_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include "CCustomStore.h"
       
    25 
       
    26 namespace VPbkSimStoreImpl {
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  An FDN store
       
    32 *
       
    33 */
       
    34 NONSHARABLE_CLASS(CFdnStore) : public CCustomStore
       
    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 CFdnStore* NewL( TStoreParams& aParams );
       
    44         
       
    45         /**
       
    46         * Destructor.
       
    47         */
       
    48         virtual ~CFdnStore();
       
    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 MSimRefreshObject
       
    65         */
       
    66         TUint32 ElementaryFiles();
       
    67         
       
    68     private:
       
    69 
       
    70         /**
       
    71         * C++ default constructor.
       
    72         */
       
    73         CFdnStore( 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_CFDNSTORE_H
       
    83             
       
    84 // End of File