landmarksui/uicontrols/inc/CLmkDoubleGraphicLBModel.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2004 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:    LandmarksUi Content File -    CLmkDoubleGraphicLBModel class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 #ifndef CLMKDOUBLEGRAPHICLBMODEL_H
       
    25 #define CLMKDOUBLEGRAPHICLBMODEL_H
       
    26 
       
    27 //  INCLUDES
       
    28 #include "CLmkSelectorLBModelBase.h"
       
    29 
       
    30 // FORWARD DECLARATIONS
       
    31 class CLmkListProviderBase;
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36 * CLmkDoubleGraphicLBModel class
       
    37 */
       
    38 class CLmkDoubleGraphicLBModel : public CLmkSelectorLBModelBase
       
    39     {
       
    40     public:  // Constructors and destructor
       
    41 
       
    42         /**
       
    43         * Create CLmkDoubleGraphicLBModel object
       
    44         * @param aListProvider
       
    45         * @return newly instantiated object
       
    46         */
       
    47         static CLmkDoubleGraphicLBModel* NewL(
       
    48                     CLmkListProviderBase& aListProvider );
       
    49 
       
    50         /**
       
    51         * Destructor.
       
    52         */
       
    53         ~CLmkDoubleGraphicLBModel();
       
    54 
       
    55     protected:  // Functions from base classes
       
    56         // leaving method
       
    57         virtual void MdcaPointL( TInt aIndex ) const;
       
    58 
       
    59     protected:  // Constructors and destructor
       
    60         /**
       
    61         * C++ default constructor.
       
    62         * @return newly instantiated object
       
    63         */
       
    64         CLmkDoubleGraphicLBModel();
       
    65 
       
    66         /**
       
    67         * Symbian 2nd phase constructor
       
    68         * @param aListProvider
       
    69         */
       
    70         void ConstructL( CLmkListProviderBase& aListProvider );
       
    71 
       
    72     private:    // Data
       
    73         ///Own:
       
    74         HBufC* iEmpty;
       
    75     };
       
    76 
       
    77 #endif      // CLMKDOUBLEGRAPHICLBMODEL_H
       
    78 
       
    79 // End of File