vfs: check userland buffers before reading them.
[haiku.git] / src / tests / add-ons / print / ppd / model / PPD.cpp
blobffbca4e3303494415b6a56e2b04912c9b55b50a2
1 /*
2 * Copyright 2008, Haiku.
3 * Distributed under the terms of the MIT license.
5 * Authors:
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
9 #include "PPD.h"
11 #include <stdio.h>
13 PPD::PPD()
14 : StatementList(true)
15 , fSymbols(false)
19 PPD::~PPD()
23 void PPD::Print()
25 printf("<ppd>\n");
26 StatementList::Print();
27 printf("</ppd>\n");