xref: /haiku/src/add-ons/print/drivers/pcl6/PCL6Cap.h (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
1 /*
2  * PCL6Cap.h
3  * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
4  */
5 
6 #ifndef __PCL6CAP_H
7 #define __PCL6CAP_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	/* __PCL6CAP_H */
20