ncdengine/inc/ncdchildloadmode.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2006 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:   ?Description
       
    15 *
       
    16 */
       
    17 	
       
    18 
       
    19 #ifndef NCD_CHILD_LOAD_MODE_H
       
    20 #define NCD_CHILD_LOAD_MODE_H
       
    21 
       
    22 /** 
       
    23  * Defines the mode for child node loading.
       
    24  */
       
    25 enum TNcdChildLoadMode
       
    26     {
       
    27     /** 
       
    28      * Loads structure data for child nodes on the given page.
       
    29      *
       
    30      * @note Loads structure for a minimum of 48 nodes regardless of page size.
       
    31      * (i.e. the range: page size -> page size + 48). This is needed for
       
    32      * aqcuiring seen/new information.
       
    33      * @note When a node has structure data but no metadata it's state is
       
    34      *  EStateNotInitialized.
       
    35      * @see MNcdNodeSeen
       
    36      * @see MNcdNode::TState
       
    37      */
       
    38     ELoadStructure,
       
    39     
       
    40     /**
       
    41      * Loads both structure- and metadata for child nodes on the given page.
       
    42      *
       
    43      * @note Loads structure for a minimum of 48 nodes regardless of page size.
       
    44      * (i.e. the range: page size -> page size + 48). This is needed for
       
    45      * aqcuiring seen/new information.
       
    46      * @see MNcdNodeSeen
       
    47      */
       
    48     ELoadMetadata,
       
    49     
       
    50     /**
       
    51      * Obsolete.
       
    52      * @note DON'T USE THIS! NOT SUPPORTED IN CURRENT IMPLEMENTATION!
       
    53      */
       
    54     EForceRefresh
       
    55     };
       
    56     
       
    57 #endif //  NCD_CHILD_LOAD_MODE_H