]> git.ipfire.org Git - thirdparty/cups.git/blame - ppdc/ppdc-private.h
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / ppdc / ppdc-private.h
CommitLineData
38e73f87 1//
503b54c9 2// Private definitions for the CUPS PPD Compiler.
38e73f87 3//
503b54c9 4// Copyright 2009-2010 by Apple Inc.
38e73f87 5//
e3101897 6// Licensed under Apache License v2.0. See the file "LICENSE" for more information.
38e73f87
MS
7//
8
9#ifndef _PPDC_PRIVATE_H_
10# define _PPDC_PRIVATE_H_
11
12//
13// Include necessary headers...
14//
15
16# include "ppdc.h"
71e16022 17# include <cups/cups-private.h>
38e73f87
MS
18
19
20//
21// Macros...
22//
23
24# define PPDC_NEW DEBUG_printf(("%s: %p new", class_name(), this))
25# define PPDC_NEWVAL(s) DEBUG_printf(("%s(\"%s\"): %p new", class_name(), s, this))
26# define PPDC_DELETE DEBUG_printf(("%s: %p delete", class_name(), this))
97c9a8d7 27# define PPDC_DELETEVAL(s) DEBUG_printf(("%s(\"%s\"): %p delete", class_name(), s, this))
38e73f87
MS
28
29
30#endif // !_PPDC_PRIVATE_H_