]>
git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-message.cxx
1e85d505d939b5b3fca1d3b50aa55135e793a659
2 // Shared message class for the CUPS PPD Compiler.
4 // Copyright 2007-2009 by Apple Inc.
5 // Copyright 2002-2005 by Easy Software Products.
7 // These coded instructions, statements, and computer programs are the
8 // property of Apple Inc. and are protected by Federal copyright
9 // law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 // which should have been included with this file. If this file is
11 // file is missing or damaged, see the license at "http://www.cups.org/".
15 // Include necessary headers...
18 #include "ppdc-private.h"
22 // 'ppdcMessage::ppdcMessage()' - Create a shared message.
25 ppdcMessage::ppdcMessage(const char *i
, // I - ID
26 const char *s
) // I - Text
31 id
= new ppdcString(i
);
32 string
= new ppdcString(s
);
37 // 'ppdcMessage::~ppdcMessage()' - Destroy a shared message.
40 ppdcMessage::~ppdcMessage()