repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
tests
/
add-ons
/
print
/
ppd
/
model
/
PPD.cpp
blob
ffbca4e3303494415b6a56e2b04912c9b55b50a2
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
}