mediasettings/videosettingsplugin/tsrc/testaccesspointentry/stub/src/videosettingsgroup.cpp
changeset 46 adbe7d5ba2f5
child 67 72c709219fcd
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 "videosettingsgroup.h"
       
    19 #include <cpitemdatahelper.h>
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // Constructor
       
    23 // ---------------------------------------------------------------------------
       
    24 //
       
    25 VideoSettingsGroup::VideoSettingsGroup(CpItemDataHelper &itemDataHelper) :
       
    26     CpSettingFormItemData(HbDataFormModelItem::GroupItem,QString("VideoSettings")),
       
    27     mItemDataHelper(itemDataHelper),
       
    28     mApId(0)
       
    29 {
       
    30 }
       
    31 
       
    32 // ---------------------------------------------------------------------------
       
    33 // Destructor
       
    34 // ---------------------------------------------------------------------------
       
    35 //
       
    36 VideoSettingsGroup::~VideoSettingsGroup()
       
    37 {
       
    38 }
       
    39 
       
    40 // ---------------------------------------------------------------------------
       
    41 // Destructor
       
    42 // ---------------------------------------------------------------------------
       
    43 //
       
    44 void VideoSettingsGroup::setAccessPointId(const uint& defaultAp)
       
    45 {
       
    46     mApId = defaultAp;
       
    47 }