summaryrefslogtreecommitdiff
path: root/ppdc/ppdc-private.h
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2009-04-08 03:17:45 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2009-04-08 03:17:45 +0000
commit38e73f87814ea3029636fb1850b0483884b3cbbe (patch)
tree02f8956b05684064f1b78b4ad9a192c370a18d52 /ppdc/ppdc-private.h
parent94da7e344cb567db8e531e263f5f4ede0f989162 (diff)
Merge changes from CUPS 1.4svn-r8492.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1378 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'ppdc/ppdc-private.h')
-rw-r--r--ppdc/ppdc-private.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/ppdc/ppdc-private.h b/ppdc/ppdc-private.h
new file mode 100644
index 000000000..4222a3d5d
--- /dev/null
+++ b/ppdc/ppdc-private.h
@@ -0,0 +1,41 @@
+//
+// "$Id$"
+//
+// Private definitions for the CUPS PPD Compiler.
+//
+// Copyright 2009 by Apple Inc.
+//
+// These coded instructions, statements, and computer programs are the
+// property of Apple Inc. and are protected by Federal copyright
+// law. Distribution and use rights are outlined in the file "LICENSE.txt"
+// which should have been included with this file. If this file is
+// file is missing or damaged, see the license at "http://www.cups.org/".
+//
+
+#ifndef _PPDC_PRIVATE_H_
+# define _PPDC_PRIVATE_H_
+
+//
+// Include necessary headers...
+//
+
+# include "ppdc.h"
+# include <cups/debug.h>
+# include <cups/globals.h>
+# include <errno.h>
+
+
+//
+// Macros...
+//
+
+# define PPDC_NEW DEBUG_printf(("%s: %p new", class_name(), this))
+# define PPDC_NEWVAL(s) DEBUG_printf(("%s(\"%s\"): %p new", class_name(), s, this))
+# define PPDC_DELETE DEBUG_printf(("%s: %p delete", class_name(), this))
+
+
+#endif // !_PPDC_PRIVATE_H_
+
+//
+// End of "$Id$".
+//