emulator/emulatorbsp/inc/display_dev.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:37:13 +0100
branchRCL_3
changeset 45 be079f63985a
parent 44 2b9ddd958b2b
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201035 Kit: 201035

// Copyright (c) 2006-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:
//

/**
 @file
 @publishedPartner
 @prototype
*/

#ifndef __DISPLAY_DEV_H__
#define __DISPLAY_DEV_H__

/**
  Logical Device (factory class) for display
*/
class DDisplayDevice : public DLogicalDevice
	{
public:
	DDisplayDevice();
	~DDisplayDevice();
	TInt Install();
	void GetCaps(TDes8& aDes) const;
	TInt Create(DLogicalChannelBase*& aChannel);
	};

#endif