camerauis/cameraxui/cxengine/inc/cxefeaturemanagerimp.h
branchRCL_3
changeset 53 61bc0f252b2b
equal deleted inserted replaced
50:f54ad444594d 53:61bc0f252b2b
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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:
       
    15 *
       
    16 */
       
    17 /*
       
    18  * cxefeaturemanager.h
       
    19  *
       
    20  *  Created on: Dec 30, 2008
       
    21  *      
       
    22  */
       
    23 #ifndef CXEFEATUREMANAGERIMP_H_
       
    24 #define CXEFEATUREMANAGERIMP_H_
       
    25 
       
    26 #include <QMetaType>
       
    27 #include "cxefeaturemanager.h"
       
    28 #include "cxeerror.h"
       
    29 
       
    30 // forward declarations
       
    31 class CxeSettings;
       
    32 
       
    33 
       
    34 
       
    35 /*
       
    36 * Handling and accessing configured run-time values for specific features
       
    37 * Handles ICM and CxUi run-time features
       
    38 */
       
    39 class CxeFeatureManagerImp : public CxeFeatureManager
       
    40 {
       
    41 
       
    42 public:
       
    43     
       
    44     CxeFeatureManagerImp(CxeSettings &settings);
       
    45     virtual ~CxeFeatureManagerImp();
       
    46 
       
    47     CxeError::Id isFeatureSupported(const QString &key, bool &value) const;
       
    48     CxeError::Id configuredValues(const QString &key, QList<int> &values);
       
    49 
       
    50 private:
       
    51     CxeSettings &mSettings;
       
    52 
       
    53 };
       
    54 
       
    55 #endif /*CXEFEATUREMANAGERIMP_H_*/
       
    56 
       
    57 // end  of file