systemswstubs/tvoutbehaviour/inc/tvoutbehaviourimpl.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 07 Sep 2010 08:19:48 +0300
changeset 40 b7e5ed8c1342
parent 0 0ce1b5ce9557
permissions -rw-r--r--
Revision: 201035: Adding stubs

/*
* Copyright (c) 2009 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:  CTvOutBehaviourImpl class declaration.
*
*/


#ifndef __TVOUTBEHAVIOURIMPL_H__
#define __TVOUTBEHAVIOURIMPL_H__

// INCLUDE FILES
#include <e32base.h>
#include "tvoutbehaviour.h"

// CLASS DECLARATION

/**
 * TV Out Behaviour Stub implementation.
 *
 * @lib tvoutbehaviour.lib
 * @since S60 TB9.2
 */
NONSHARABLE_CLASS(CTvOutBehaviourImpl) : public CTvOutBehaviour
    {
public:

    /**
     * Symbian two phased constructors.
     *
     * @since S60 TB9.2
     * @param None.
     * @return CTvOutBehaviourImpl
     */
    static CTvOutBehaviourImpl* NewL();

    /**
     * C++ destructor.
     */
    virtual ~CTvOutBehaviourImpl();

protected: // From CTvOutBehaviour

    virtual TInt SetTvOutSettings(const TTvOutSettings& aParams);
    virtual TInt DeActivateSettings();
    virtual TUint GetTvOutScreenDevices();
    virtual TInt GetTvOutDisplayNumber();
    virtual TInt GetTvOutSettings(TTvOutSettings& aParams);
    virtual TInt SettingsListener(TRequestStatus& aStatus);
    virtual TInt CancelSettingsListener();
    virtual TInt GetTvOutDefaultSettings(TTvOutSettings& aParams);

private:

    CTvOutBehaviourImpl();
    };

#endif //__TVOUTBEHAVIOURIMPL_H__

// End of File