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#ifndef PSDATA_H
9#define PSDATA_H
10
11
12#include "PrinterData.h"
13
14#include <String.h>
15
16
17class BNode;
18
19
20class PSData : public PrinterData {
21public:
22					PSData(BNode* node)
23					:
24					PrinterData(node)
25					{
26					}
27
28	// PrinterData overrides
29	virtual	void	Load();
30	virtual	void	Save();
31
32	BString fPPD;
33};
34
35#endif // PSDATA_H
36