]> git.ipfire.org Git - thirdparty/cups.git/blame - ppdc/ppdc-attr.cxx
Merge changes from CUPS 1.4svn-r7614.
[thirdparty/cups.git] / ppdc / ppdc-attr.cxx
CommitLineData
ac884b6a
MS
1//
2// "$Id$"
3//
4// Attribute class for the CUPS PPD Compiler.
5//
6// Copyright 2007 by Apple Inc.
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// ppdcAttr::ppdcAttr() - Create an attribute.
18// ppdcAttr::~ppdcAttr() - Destroy an attribute.
19//
20
21//
22// Include necessary headers...
23//
24
25#include "ppdc.h"
26
27
28//
29// 'ppdcAttr::ppdcAttr()' - Create an attribute.
30//
31
32ppdcAttr::ppdcAttr(const char *n, // I - Name
33 const char *s, // I - Spec string
34 const char *t, // I - Human-readable text
bdd6c45b
MS
35 const char *v, // I - Value
36 bool loc) // I - Localize this attribute?
ac884b6a
MS
37 : ppdcShared()
38{
bdd6c45b
MS
39 name = new ppdcString(n);
40 selector = new ppdcString(s);
41 text = new ppdcString(t);
42 value = new ppdcString(v);
43 localizable = loc;
ac884b6a
MS
44}
45
46
47//
48// 'ppdcAttr::~ppdcAttr()' - Destroy an attribute.
49//
50
51ppdcAttr::~ppdcAttr()
52{
53 name->release();
54 selector->release();
55 text->release();
56 value->release();
57}
58
59
60//
61// End of "$Id$".
62//