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