mediasettings/videosettingsplugin/tsrc/testgroup/stub/inc/videosettingsaccesspointentry.h
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: VideoSettingsAccessPointEntry stub
       
    15  *
       
    16  */
       
    17 #ifndef VIDEOSETTINGSACCESSPOINTENTRY_H
       
    18 #define VIDEOSETTINGSACCESSPOINTENTRY_H
       
    19 
       
    20 #include <cpsettingformitemdata.h>
       
    21 
       
    22 class VideoSettingsGroup;
       
    23 
       
    24 class VideoSettingsAccessPointEntry : public CpSettingFormItemData
       
    25 {
       
    26     Q_OBJECT
       
    27 public:
       
    28     
       
    29     /**
       
    30      * Constructor
       
    31      */
       
    32     VideoSettingsAccessPointEntry(CpItemDataHelper &itemDataHelper, 
       
    33         const QString& text = QString(),
       
    34         VideoSettingsGroup *parent = 0);
       
    35     
       
    36     /**
       
    37      * Destructor
       
    38      */
       
    39     ~VideoSettingsAccessPointEntry();
       
    40     
       
    41     /**
       
    42      * sets the iap id.
       
    43      * 
       
    44      * @param apId The iap id.
       
    45      */
       
    46     void setIapId(const uint& apId);
       
    47     
       
    48 public:
       
    49     
       
    50     QString mText;
       
    51     
       
    52     VideoSettingsGroup* mParent;
       
    53     
       
    54     uint mApId;
       
    55     
       
    56 };
       
    57 
       
    58 #endif // VIDEOSETTINGSACCESSPOINTENTRY_H