emulator/emulatorbsp/inc/display_dev.h
changeset 0 cec860690d41
child 14 2b9ddd958b2b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulator/emulatorbsp/inc/display_dev.h	Tue Feb 02 01:39:10 2010 +0200
@@ -0,0 +1,39 @@
+// 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
+