landmarksui/engine/src/CLmkUiItemBase.cpp
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2002 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 -
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 // INCLUDE FILES
       
    26 #include "CLmkUiItemBase.h"
       
    27 
       
    28 // ============================ MEMBER FUNCTIONS ===============================
       
    29 
       
    30 // -----------------------------------------------------------------------------
       
    31 // CLmkAOOperation::CLmkAOOperation
       
    32 // C++ constructor can NOT contain any code, that
       
    33 // might leave.
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 CLmkUiItemBase::CLmkUiItemBase()
       
    37     : iExtExists( EFalse )
       
    38     {
       
    39     }
       
    40 
       
    41 // ---------------------------------------------------------
       
    42 // CLmkUiItemBase::~CLmkUiItemBase
       
    43 // ---------------------------------------------------------
       
    44 //
       
    45 CLmkUiItemBase::~CLmkUiItemBase()
       
    46     {
       
    47     }
       
    48 
       
    49 // ---------------------------------------------------------
       
    50 // CLmkUiItemBase::ExtensionIntExists
       
    51 // ---------------------------------------------------------
       
    52 //
       
    53 EXPORT_C TBool CLmkUiItemBase::ExtensionIntExists()
       
    54     {
       
    55     return iExtExists;
       
    56     }
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 // CLmkUiItemBase::SetExtensionInt
       
    60 // ---------------------------------------------------------
       
    61 //
       
    62 EXPORT_C void CLmkUiItemBase::SetExtensionInt( TInt aInt )
       
    63     {
       
    64     iExtInt = aInt;
       
    65     iExtExists = ETrue;
       
    66     }
       
    67 
       
    68 // ---------------------------------------------------------
       
    69 // CLmkUiItemBase::ExtensionInt
       
    70 // ---------------------------------------------------------
       
    71 //
       
    72 EXPORT_C TInt CLmkUiItemBase::ExtensionInt()
       
    73     {
       
    74     return iExtInt;
       
    75     }
       
    76 
       
    77 //  End of File