1/*
2 * Copyright 2008, Haiku.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8
9#ifndef _PPD_H
10#define _PPD_H
11
12#include "Statement.h"
13
14// PostScript Printer Definiton
15class PPD : public StatementList {
16private:
17	StatementList fSymbols;
18
19public:
20	PPD();
21	virtual ~PPD();
22
23	// Prints the PPD to stdout in XML
24	void Print();
25};
26
27#endif
28
29