/* * Copyright 2008, Haiku. * Distributed under the terms of the MIT license. * * Authors: * Michael Pfeiffer */ #include "PPD.h" #include PPD::PPD() : StatementList(true) , fSymbols(false) { } PPD::~PPD() { } void PPD::Print() { printf("\n"); StatementList::Print(); printf("\n"); }