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
13PPD::PPD()
14	: StatementList(true)
15	, fSymbols(false)
16{
17}
18
19PPD::~PPD()
20{
21}
22
23void PPD::Print()
24{
25	printf("<ppd>\n");
26	StatementList::Print();
27	printf("</ppd>\n");
28}
29