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 Supports(CapID) const; 17 virtual const BaseCap **GetCaps(CapID) const; 18 }; 19 20 #endif // __LIPS3CAP_H 21