bluetoothengine/btui/btcpplugin/btcpuibaseview.cpp
changeset 29 48ae3789ce00
child 31 a0ea99b6fa53
equal deleted inserted replaced
28:7e2761e776bd 29:48ae3789ce00
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name        : btcpuibaseclass.cpp
       
     4 *  Part of     : BluetoothUI / btapplication       *** Info from the SWAD
       
     5 *  Description : Implements the baseclass for all views in btapplication.
       
     6 *
       
     7 *  Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 *  All rights reserved.
       
     9 *  This component and the accompanying materials are made available
       
    10 *  under the terms of "Eclipse Public License v1.0"
       
    11 *  which accompanies this distribution, and is available
       
    12 *  at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 *
       
    14 *  Initial Contributors:
       
    15 *  Nokia Corporation - initial contribution.
       
    16 *
       
    17 *  Contributors:
       
    18 *  Nokia Corporation
       
    19 * ============================================================================
       
    20 * Template version: 4.1
       
    21 */
       
    22 
       
    23 #include "btcpuibaseview.h"
       
    24 #include <HbAction.h>
       
    25 
       
    26 /*!
       
    27     Constructor.
       
    28  */
       
    29 BtCpUiBaseView::BtCpUiBaseView( BtuiModel &model, QGraphicsItem *parent )
       
    30     :CpBaseSettingView( 0 , parent ),mModel(model)
       
    31 {
       
    32 
       
    33 }
       
    34 
       
    35 /*!
       
    36     Destructor.
       
    37  */
       
    38 BtCpUiBaseView::~BtCpUiBaseView()
       
    39 {
       
    40 
       
    41 }
       
    42 
       
    43 
       
    44 
       
    45