]>
git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-attr.cxx
4 // Attribute class for the CUPS PPD Compiler.
6 // Copyright 2007-2009 by Apple Inc.
7 // Copyright 2002-2005 by Easy Software Products.
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/".
17 // ppdcAttr::ppdcAttr() - Create an attribute.
18 // ppdcAttr::~ppdcAttr() - Destroy an attribute.
22 // Include necessary headers...
25 #include "ppdc-private.h"
29 // 'ppdcAttr::ppdcAttr()' - Create an attribute.
32 ppdcAttr::ppdcAttr(const char *n
, // I - Name
33 const char *s
, // I - Spec string
34 const char *t
, // I - Human-readable text
35 const char *v
, // I - Value
36 bool loc
) // I - Localize this attribute?
41 name
= new ppdcString(n
);
42 selector
= new ppdcString(s
);
43 text
= new ppdcString(t
);
44 value
= new ppdcString(v
);
50 // 'ppdcAttr::~ppdcAttr()' - Destroy an attribute.