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