xref: /haiku/src/add-ons/print/drivers/lpstyl/LpstylData.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
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 LPSTYLDATA_H
9 #define LPSTYLDATA_H
10 
11 
12 #include "PrinterData.h"
13 
14 
15 class BNode;
16 
17 
18 class LpstylData : public PrinterData {
19 public:
20 					LpstylData(BNode* node)
21 					:
22 					PrinterData(node)
23 					{
24 					}
25 
26 	// PrinterData overrides
27 	virtual	void	Save();
28 };
29 
30 #endif // LPSTYLDATA_H
31 
32