mediasettings/videosettingsplugin/src/videosettingsplugin.cpp
changeset 46 adbe7d5ba2f5
equal deleted inserted replaced
28:c48470be1ba7 46:adbe7d5ba2f5
       
     1 /*
       
     2  * Copyright (c) 2009 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 #include "videosettingsplugin.h"
       
    19 #include "videosettingsgroup.h"
       
    20 #include <cpsettingformentryitemdataimpl.h>
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // Constructor
       
    24 // ---------------------------------------------------------------------------
       
    25 //
       
    26 VideoSettingsPlugin::VideoSettingsPlugin()
       
    27 {
       
    28 }
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // Destructor
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 VideoSettingsPlugin::~VideoSettingsPlugin()
       
    35 {
       
    36 }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // createSettingFormItemData
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 QList<CpSettingFormItemData*> VideoSettingsPlugin::createSettingFormItemData(CpItemDataHelper &itemDataHelper) const
       
    43 {
       
    44     return QList<CpSettingFormItemData*>() << new VideoSettingsGroup(itemDataHelper);
       
    45 }
       
    46 
       
    47 Q_EXPORT_PLUGIN2(videosettingsplugin, VideoSettingsPlugin);