1/*
2* Copyright 2017, Haiku. All rights reserved.
3* Distributed under the terms of the MIT License.
4*
5* Authors:
6*		Adrien Destugues <pulkomandy@pulkomandy.tk>
7*/
8#ifndef LPSTYLCAP_H
9#define LPSTYLCAP_H
10
11
12#include "PrinterCap.h"
13
14
15class LpstylCap : public PrinterCap {
16public:
17					LpstylCap(const PrinterData* printer_data)
18						: PrinterCap(printer_data) {}
19	virtual	int		CountCap(CapID) const;
20	virtual	bool	Supports(CapID) const;
21	virtual	const	BaseCap** GetCaps(CapID) const;
22};
23
24#endif // __LIPS4CAP_H
25