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