xref: /haiku/src/add-ons/print/drivers/pcl6/PCL6Cap.h (revision 1294543de9ac0eff000eaea1b18368c36435d08e)
1 /*
2  * PCL6Cap.h
3  * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
4  */
5 #ifndef __PCL6CAP_H
6 #define __PCL6CAP_H
7 
8 
9 #include "PrinterCap.h"
10 
11 
12 class PCL6Cap : public PrinterCap {
13 public:
14 					PCL6Cap(const PrinterData* printer_data);
15 	virtual	int		countCap(CapID) const;
16 	virtual	bool	isSupport(CapID) const;
17 	virtual	const	BaseCap **enumCap(CapID) const;
18 };
19 
20 #endif // __PCL6CAP_H
21