1//
2// "$Id: ppdc-private.h 1995 2010-03-24 16:25:12Z msweet $"
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: ppdc-private.h 1995 2010-03-24 16:25:12Z msweet $".
40//
41