mediasettings/videosettingsplugin/tsrc/testgroup/stub/src/videosettingsaccesspointentry.cpp
changeset 46 adbe7d5ba2f5
child 49 824471cb468a
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 "videosettingsaccesspointentry.h"
       
    19 #include <cpitemdatahelper.h>
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // Constructor
       
    23 // ---------------------------------------------------------------------------
       
    24 //
       
    25 VideoSettingsAccessPointEntry::VideoSettingsAccessPointEntry(
       
    26     CpItemDataHelper &itemDataHelper,
       
    27     const QString& text,
       
    28     VideoSettingsGroup *parent) :
       
    29     CpSettingFormItemData(HbDataFormModelItem::CustomItemBase, text),
       
    30     mText(text),
       
    31     mParent(parent)
       
    32 {
       
    33     Q_UNUSED(itemDataHelper);
       
    34 }
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // Destructor
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 VideoSettingsAccessPointEntry::~VideoSettingsAccessPointEntry()
       
    41 {
       
    42 }
       
    43 
       
    44 // ---------------------------------------------------------------------------
       
    45 // accessPointNameFromIapId
       
    46 // ---------------------------------------------------------------------------
       
    47 //
       
    48 void VideoSettingsAccessPointEntry::setIapId(const uint& apId)
       
    49 {
       
    50     mApId = apId;
       
    51 }