1 /* 2 * Lips4Cap.h 3 * Copyright 1999-2000 Y.Takagi. All Rights Reserved. 4 */ 5 6 #ifndef __LIPS4CAP_H 7 #define __LIPS4CAP_H 8 9 #include "PrinterCap.h" 10 11 class Lips4Cap : public PrinterCap { 12 public: 13 Lips4Cap(const PrinterData *printer_data) : PrinterCap(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 /* __LIPS4CAP_H */ 20