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