]> git.ipfire.org Git - thirdparty/cups.git/blame - ppdc/ppdc-private.h
Merge changes from CUPS 1.5svn-r9041.
[thirdparty/cups.git] / ppdc / ppdc-private.h
CommitLineData
38e73f87
MS
1//
2// "$Id$"
3//
4// Private definitions for the CUPS PPD Compiler.
5//
6// Copyright 2009 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/debug.h>
24# include <cups/globals.h>
25# include <errno.h>
26
27
28//
29// Macros...
30//
31
32# define PPDC_NEW DEBUG_printf(("%s: %p new", class_name(), this))
33# define PPDC_NEWVAL(s) DEBUG_printf(("%s(\"%s\"): %p new", class_name(), s, this))
34# define PPDC_DELETE DEBUG_printf(("%s: %p delete", class_name(), this))
97c9a8d7 35# define PPDC_DELETEVAL(s) DEBUG_printf(("%s(\"%s\"): %p delete", class_name(), s, this))
38e73f87
MS
36
37
38#endif // !_PPDC_PRIVATE_H_
39
40//
41// End of "$Id$".
42//