PECengine/ListLibrary2/ContactListSrc/MPEngContactListModStore.h
branchRCL_3
changeset 17 a941bc465d9f
parent 0 094583676ce7
equal deleted inserted replaced
16:6ca72c0fe49a 17:a941bc465d9f
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Abstract interface for contact list model store
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __MPENGCONTACTLISTMODSTORE_H__
       
    19 #define __MPENGCONTACTLISTMODSTORE_H__
       
    20 
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 
       
    26 // CLASS DECLARATION
       
    27 /**
       
    28  * Abstract interface for contact list model store
       
    29  *
       
    30  * @since 3.0
       
    31  */
       
    32 class MPEngContactListModStore
       
    33     {
       
    34     public:
       
    35 
       
    36         /**
       
    37          * Gets reference to the store entry size
       
    38          * Size can be modified through this reference
       
    39          * @since 3.0
       
    40          * @return store size reference
       
    41          */
       
    42         virtual TInt& StoreSizeCount() = 0;
       
    43 
       
    44 
       
    45         /**
       
    46          * Store Entry to the store.
       
    47          *
       
    48          * @since 3.0
       
    49          */
       
    50         virtual void StoreEntryL() = 0;
       
    51 
       
    52 
       
    53     protected:  //Destructor
       
    54 
       
    55         /**
       
    56          * Virtual inline destructor.
       
    57          * Protected destructor to prohibite deletion through interface.
       
    58          */
       
    59         virtual ~MPEngContactListModStore() {};
       
    60 
       
    61     };
       
    62 #endif      //  __MPENGCONTACTLISTMODSTORE_H__
       
    63 
       
    64 //  End of File
       
    65