epoc32/include/pdrport.h
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
--- a/epoc32/include/pdrport.h	Wed Mar 31 12:27:01 2010 +0100
+++ b/epoc32/include/pdrport.h	Wed Mar 31 12:33:34 2010 +0100
@@ -1,9 +1,9 @@
 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
 // All rights reserved.
 // This component and the accompanying materials are made available
-// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+// under the terms of "Eclipse Public License v1.0"
 // which accompanies this distribution, and is available
-// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
 //
 // Initial Contributors:
 // Nokia Corporation - initial contribution.
@@ -21,6 +21,9 @@
 #include <gdi.h>
 #include <s32file.h>
 
+#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
+#include <printerdriversupport/printerport.h>
+#endif
 
 /**
  @publishedAll
@@ -44,118 +47,4 @@
 	TBool iCancelled;
 	};
 
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class TOutputHandshake
-	{
-public:
-	IMPORT_C TOutputHandshake();
-	IMPORT_C void InternalizeL(RReadStream& aStream);
-	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
-public:
-	TBool iXonXoff;
-	TBool iCts;
-	TBool iDsr;
-	TBool iDcd;
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class TSerialPrinterPortConfig
-	{
-public:
-	IMPORT_C TSerialPrinterPortConfig();
-	IMPORT_C void InternalizeL(RReadStream& aStream);
-	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
-public:
-	TBps iRate;
-	TDataBits iDataBits;
-	TStopBits iStopBits;
-	TParity iParity;
-	TBool iIgnoreParity;
-	TOutputHandshake iHandshake;
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class CCommPrinterPort : public CPrinterPort
-	{
-public:
-	IMPORT_C static CCommPrinterPort* NewL(const TDesC& aCsyName, const TDesC& aPortName, const TSerialPrinterPortConfig& aConfig, const TFifo aFifo = EFifoEnable);
-	IMPORT_C ~CCommPrinterPort();
-	IMPORT_C void WriteRequest(const TDesC8& aBuf, TRequestStatus& aRequestStatus);
-	IMPORT_C void Cancel();
-protected:
-	IMPORT_C void ConstructL(const TDesC& aCsyName, const TDesC& aPortName, const TSerialPrinterPortConfig& aConfig, const TFifo aFifo = EFifoEnable);
-	IMPORT_C CCommPrinterPort();
-protected:
-	RCommServ iCommServ;
-	RComm iComm;
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class CSerialPrinterPort : public CCommPrinterPort
-	{
-public:
-	IMPORT_C static CSerialPrinterPort* NewL(const TDesC& aPortName, const TSerialPrinterPortConfig& aConfig);
-	IMPORT_C ~CSerialPrinterPort();
-	IMPORT_C TSerialPrinterPortConfig Config();  // returns the current port config
-private:
-	void ConstructL(const TDesC& aPortName);
-	CSerialPrinterPort(const TSerialPrinterPortConfig& aConfig);
-private:
-	TSerialPrinterPortConfig iConfig;
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class CParallelPrinterPort : public CCommPrinterPort
-	{
-public:
-	IMPORT_C static CParallelPrinterPort* NewL(const TDesC& aPortName);
-	IMPORT_C ~CParallelPrinterPort();
-private:
-	void ConstructL(const TDesC& aPortName);
-	CParallelPrinterPort();
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class CIrdaPrinterPort : public CCommPrinterPort
-	{
-public:
-	IMPORT_C static CIrdaPrinterPort* NewL();
-	IMPORT_C ~CIrdaPrinterPort();
-private:
-	void ConstructL();
-	CIrdaPrinterPort();
-	};
-
-/**
- * @internalTechnology
- * Internal to Symbian
- */
-class CEpocConnectPort : public CCommPrinterPort
-	{
-public:
-	IMPORT_C static CEpocConnectPort* NewL();
-	IMPORT_C ~CEpocConnectPort();
-private:
-	void ConstructL();
-	CEpocConnectPort();
-	};
-
 #endif