]> git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-string.cxx
Import changes from CUPS 1.4svn-r8704.
[thirdparty/cups.git] / ppdc / ppdc-string.cxx
1 //
2 // "$Id$"
3 //
4 // Shared string class for the CUPS PPD Compiler.
5 //
6 // Copyright 2007-2009 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 // ppdcString::ppdcString() - Create a shared string.
18 // ppdcString::~ppdcString() - Destroy a shared string.
19 //
20
21 //
22 // Include necessary headers...
23 //
24
25 #include "ppdc-private.h"
26
27
28 //
29 // 'ppdcString::ppdcString()' - Create a shared string.
30 //
31
32 ppdcString::ppdcString(const char *v) // I - String
33 : ppdcShared()
34 {
35 PPDC_NEWVAL(v);
36
37 if (v)
38 {
39 value = new char[strlen(v) + 1];
40 strcpy(value, v);
41 }
42 else
43 value = 0;
44 }
45
46
47 //
48 // 'ppdcString::~ppdcString()' - Destroy a shared string.
49 //
50
51 ppdcString::~ppdcString()
52 {
53 PPDC_DELETEVAL(value);
54
55 if (value)
56 delete[] value;
57 }
58
59
60 //
61 // End of "$Id$".
62 //