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