xref: /haiku/src/add-ons/print/drivers/postscript/PSData.h (revision b289aaf66bbf6e173aa90fa194fc256965f1b34d)
1 /*
2 * Copyright 2010, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Ithamar R. Adema <ithamar.adema@team-embedded.nl>
7 */
8 
9 #ifndef PSDATA_H
10 #define PSDATA_H
11 
12 #include "PrinterData.h"
13 #include <String.h>
14 
15 
16 class BNode;
17 
18 
19 class PSData : public PrinterData {
20 public:
21 	PSData(BNode *node) : PrinterData(node) {}
22 
23 	// PrinterData overrides
24 	virtual void load();
25 	virtual void save();
26 
27 	BString fPPD;
28 };
29 
30 
31 #endif /* PSDATA_H */
32