]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - ppdc/ppdc-group.cxx
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / ppdc / ppdc-group.cxx
index c93fc20b1b330a6b312ae6e2669e43159d4bc744..af9000a929bd140e1fd7e0199814c59c4eb2ea46 100644 (file)
@@ -1,30 +1,21 @@
 //
-// "$Id$"
+// Group class for the CUPS PPD Compiler.
 //
-//   Group class for the CUPS PPD Compiler.
+// Copyright 2007-2011 by Apple Inc.
+// Copyright 2002-2005 by Easy Software Products.
 //
-//   Copyright 2007 by Apple Inc.
-//   Copyright 2002-2005 by Easy Software Products.
-//
-//   These coded instructions, statements, and computer programs are the
-//   property of Apple Inc. and are protected by Federal copyright
-//   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-//   which should have been included with this file.  If this file is
-//   file is missing or damaged, see the license at "http://www.cups.org/".
-//
-// Contents:
-//
-//   ppdcGroup::ppdcGroup()   - Create a new group.
-//   ppdcGroup::ppdcGroup()   - Copy a new group.
-//   ppdcGroup::~ppdcGroup()  - Destroy a group.
-//   ppdcGroup::find_option() - Find an option in a group.
+// These coded instructions, statements, and computer programs are the
+// property of Apple Inc. and are protected by Federal copyright
+// law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+// which should have been included with this file.  If this file is
+// file is missing or damaged, see the license at "http://www.cups.org/".
 //
 
 //
 // Include necessary headers...
 //
 
-#include "ppdc.h"
+#include "ppdc-private.h"
 
 
 //
@@ -34,6 +25,8 @@
 ppdcGroup::ppdcGroup(const char *n,    // I - Name of group
                      const char *t)    // I - Text of group
 {
+  PPDC_NEWVAL(n);
+
   name    = new ppdcString(n);
   text    = new ppdcString(t);
   options = new ppdcArray();
@@ -46,17 +39,18 @@ ppdcGroup::ppdcGroup(const char *n, // I - Name of group
 
 ppdcGroup::ppdcGroup(ppdcGroup *g)     // I - Group template
 {
-  ppdcOption   *o;                     // Current option
-
+  PPDC_NEWVAL(g->name->value);
 
-  g->name->get();
-  g->text->get();
+  g->name->retain();
+  g->text->retain();
 
   name = g->name;
   text = g->text;
 
   options = new ppdcArray();
-  for (o = (ppdcOption *)g->options->first(); o; o = (ppdcOption *)g->options->next())
+  for (ppdcOption *o = (ppdcOption *)g->options->first();
+       o;
+       o = (ppdcOption *)g->options->next())
     options->add(new ppdcOption(o));
 }
 
@@ -67,9 +61,14 @@ ppdcGroup::ppdcGroup(ppdcGroup *g)   // I - Group template
 
 ppdcGroup::~ppdcGroup()
 {
+  PPDC_DELETEVAL(name ? name->value : NULL);
+
   name->release();
   text->release();
-  delete options;
+  options->release();
+
+  name = text = 0;
+  options = 0;
 }
 
 
@@ -84,13 +83,8 @@ ppdcGroup::find_option(const char *n)        // I - Name of option
 
 
   for (o = (ppdcOption *)options->first(); o; o = (ppdcOption *)options->next())
-    if (!strcasecmp(n, o->name->value))
+    if (!_cups_strcasecmp(n, o->name->value))
       return (o);
 
   return (0);
 }
-
-
-//
-// End of "$Id$".
-//