]> git.ipfire.org Git - thirdparty/cups.git/blame - ppdc/ppdc-filter.cxx
Import CUPS v1.7.1
[thirdparty/cups.git] / ppdc / ppdc-filter.cxx
CommitLineData
ac884b6a 1//
61515785 2// "$Id: ppdc-filter.cxx 1378 2009-04-08 03:17:45Z msweet $"
ac884b6a
MS
3//
4// Filter class for the CUPS PPD Compiler.
5//
94da7e34 6// Copyright 2007-2009 by Apple Inc.
ac884b6a
MS
7// Copyright 2002-2005 by Easy Software Products.
8//
9// These coded instructions, statements, and computer programs are the
10// property of Apple Inc. and are protected by Federal copyright
11// law. Distribution and use rights are outlined in the file "LICENSE.txt"
12// which should have been included with this file. If this file is
13// file is missing or damaged, see the license at "http://www.cups.org/".
14//
15// Contents:
16//
17// ppdcFilter::ppdcFilter() - Create a filter.
18// ppdcFilter::~ppdcFilter() - Destroy a filter.
19//
20
21//
22// Include necessary headers...
23//
24
38e73f87 25#include "ppdc-private.h"
ac884b6a
MS
26
27
28//
29// 'ppdcFilter::ppdcFilter()' - Create a filter.
30//
31
32ppdcFilter::ppdcFilter(const char *t, // I - MIME type
33 const char *p, // I - Filter program
34 int c) // I - Relative cost
94da7e34 35 : ppdcShared()
ac884b6a 36{
94da7e34
MS
37 PPDC_NEW;
38
ac884b6a
MS
39 mime_type = new ppdcString(t);
40 program = new ppdcString(p);
41 cost = c;
42}
43
44
45//
46// 'ppdcFilter::~ppdcFilter()' - Destroy a filter.
47//
48
49ppdcFilter::~ppdcFilter()
50{
94da7e34
MS
51 PPDC_DELETE;
52
ac884b6a
MS
53 mime_type->release();
54 program->release();
55}
56
57
58//
61515785 59// End of "$Id: ppdc-filter.cxx 1378 2009-04-08 03:17:45Z msweet $".
ac884b6a 60//