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
12class Lips4Cap : public PrinterCap {
13public:
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