]> git.ipfire.org Git - thirdparty/cups.git/blame - ppdc/ppdc-private.h
Work around undocumented side-effect of SecItemAdd...
[thirdparty/cups.git] / ppdc / ppdc-private.h
CommitLineData
38e73f87
MS
1//
2// "$Id$"
3//
4// Private definitions for the CUPS PPD Compiler.
5//
71e16022 6// Copyright 2009-2010 by Apple Inc.
38e73f87
MS
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"
71e16022 23# include <cups/cups-private.h>
38e73f87
MS
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))
97c9a8d7 33# define PPDC_DELETEVAL(s) DEBUG_printf(("%s(\"%s\"): %p delete", class_name(), s, this))
38e73f87
MS
34
35
36#endif // !_PPDC_PRIVATE_H_
37
38//
39// End of "$Id$".
40//