bluetoothengine/btui/btuidelegate/btabstractdelegate.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 May 2010 13:01:44 +0300
changeset 33 837dcc42fd6a
parent 19 43824b19ee35
child 40 997690c3397a
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/


#include "btabstractdelegate.h"
#include <btsettingmodel.h>
#include <btdevicemodel.h>

/*!
    Constructor.
 */
BtAbstractDelegate::BtAbstractDelegate( BtSettingModel *settingModel, 
        BtDeviceModel *deviceModel, QObject *parent )
    : QObject( parent ), mSettingModel(settingModel),mDeviceModel(deviceModel)
{
}

/*!
    Destructor.
 */
BtAbstractDelegate::~BtAbstractDelegate()
{
}

BtSettingModel *BtAbstractDelegate::getSettingModel()
{
    return mSettingModel;
}

BtDeviceModel *BtAbstractDelegate::getDeviceModel()
{
    return mDeviceModel;
}

void BtAbstractDelegate::cancel()
{
    
}