]> git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-private.h
License change: Apache License, Version 2.0.
[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 // Licensed under Apache License v2.0. See the file "LICENSE" for more information.
7 //
8
9 #ifndef _PPDC_PRIVATE_H_
10 # define _PPDC_PRIVATE_H_
11
12 //
13 // Include necessary headers...
14 //
15
16 # include "ppdc.h"
17 # include <cups/cups-private.h>
18
19
20 //
21 // Macros...
22 //
23
24 # define PPDC_NEW DEBUG_printf(("%s: %p new", class_name(), this))
25 # define PPDC_NEWVAL(s) DEBUG_printf(("%s(\"%s\"): %p new", class_name(), s, this))
26 # define PPDC_DELETE DEBUG_printf(("%s: %p delete", class_name(), this))
27 # define PPDC_DELETEVAL(s) DEBUG_printf(("%s(\"%s\"): %p delete", class_name(), s, this))
28
29
30 #endif // !_PPDC_PRIVATE_H_