bluetoothengine/btui/btcpplugin/btcpuiviewmgr.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 08:30:56 +0300
changeset 63 bcf742120177
permissions -rw-r--r--
Revision: 201035 Kit: 201037

/*
 * 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:  
 *
 */

#ifndef BTCPUIVIEWMGR_H
#define BTCPUIVIEWMGR_H

#include <qglobal.h>

class BtcpuiBaseView;
class BtAbstractDelegate;

/*!
    \class BtcpuiViewMgr
    \brief the view management interface of Bluetooth CP plugin
 */
class BtcpuiViewMgr
{

public:

    /*!
     * Gets the device view instance.
     */
    virtual BtcpuiBaseView *deviceView() = 0;
    
    virtual void switchView(BtcpuiBaseView *from, BtcpuiBaseView *destination,
            const QVariant &init, bool backNavi) = 0;
    
};

#endif // BTCPUIVIEWMGR_H