ncdengine/inc/ncdconfigurationdata.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:   Declaration of MNcdConfigurationData interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_NCDCONFIGURATIONDATA_H
       
    20 #define C_NCDCONFIGURATIONDATA_H
       
    21 
       
    22 #include "ncdinterfaceids.h"
       
    23 #include "catalogsbase.h"
       
    24 
       
    25 /**
       
    26  * This interface can be used to get the configuration data obtained
       
    27  * from CDB. The interface can be queried from load root node operation.
       
    28  */
       
    29 class MNcdConfigurationData : public virtual MCatalogsBase
       
    30     {
       
    31 public:
       
    32     /**
       
    33      * Unique identifier for the interface, required for all MCatalogsBase interfaces.
       
    34      *
       
    35      * 
       
    36      */
       
    37     enum { KInterfaceUid = ENcdConfigurationDataUid };
       
    38 
       
    39     /**
       
    40      * @exception Leave System wide error code
       
    41      * @return The configuration response if obtained by the operation.
       
    42      */
       
    43     virtual HBufC8* ProtocolResponseDataL() = 0;
       
    44     };
       
    45     
       
    46 #endif