]> git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-private.h
92743ae6b5984ca70d7875039124153d7878d11b
[thirdparty/cups.git] / ppdc / ppdc-private.h
1 //
2 // Private definitions for the CUPS PPD Compiler.
3 //
4 // Copyright 2009-2010 by Apple Inc.
5 //
6 // These coded instructions, statements, and computer programs are the
7 // property of Apple Inc. and are protected by Federal copyright
8 // law. Distribution and use rights are outlined in the file "LICENSE.txt"
9 // which should have been included with this file. If this file is
10 // file is missing or damaged, see the license at "http://www.cups.org/".
11 //
12
13 #ifndef _PPDC_PRIVATE_H_
14 # define _PPDC_PRIVATE_H_
15
16 //
17 // Include necessary headers...
18 //
19
20 # include "ppdc.h"
21 # include <cups/cups-private.h>
22
23
24 //
25 // Macros...
26 //
27
28 # define PPDC_NEW DEBUG_printf(("%s: %p new", class_name(), this))
29 # define PPDC_NEWVAL(s) DEBUG_printf(("%s(\"%s\"): %p new", class_name(), s, this))
30 # define PPDC_DELETE DEBUG_printf(("%s: %p delete", class_name(), this))
31 # define PPDC_DELETEVAL(s) DEBUG_printf(("%s(\"%s\"): %p delete", class_name(), s, this))
32
33
34 #endif // !_PPDC_PRIVATE_H_