xref: /haiku/src/tests/add-ons/print/ppd/model/PPD.cpp (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
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 #include "PPD.h"
10 
11 #include <stdio.h>
12 
13 PPD::PPD()
14 	: StatementList(true)
15 	, fSymbols(false)
16 {
17 }
18 
19 PPD::~PPD()
20 {
21 }
22 
23 void PPD::Print()
24 {
25 	printf("<ppd>\n");
26 	StatementList::Print();
27 	printf("</ppd>\n");
28 }
29