xref: /haiku/src/add-ons/print/drivers/pcl6/PCL6Cap.h (revision 3bfe34e2b17f527c54573be7826353ea0a2147b0)
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 PCL6Cap : public PrinterCap {
12 public:
13 	PCL6Cap(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