xref: /haiku/src/add-ons/print/drivers/canon_lips/lips3/Lips3Cap.h (revision 5d9e40fe9252c8f9c5e5e41594545bfa4419fcc7)
1 /*
2  * Lips3Cap.h
3  * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
4  */
5 
6 #ifndef __LIPS3CAP_H
7 #define __LIPS3CAP_H
8 
9 #include "PrinterCap.h"
10 
11 class Lips3Cap : public PrinterCap {
12 public:
13 	Lips3Cap(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	/* __LIPS3CAP_H */
20