Added new arguments to configuration::find_parameter() to allow for a list of
[AXE.git] / src / xappl.h
index 189b71e..5bb95ae 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : xappl.h
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      : Definition of xapplication class 
 **
 
 /*****************************
    $Log: xappl.h,v $
-   Revision 1.1  2002-07-25 08:01:27  arjen
+   Revision 1.2  2007-05-04 14:01:22  arjen
+   Added new arguments to configuration::find_parameter() to allow for a list of
+   sections and a list of parameters in sections.
+   The new arguments are section index and parameter index (default = 0).
+
+   Revision 1.1  2002/07/25 08:01:27  arjen
    First checkin, AXE release 0.2
 
 *****************************/
 
-/* static const char *RCSID = "$Id: xappl.h,v 1.1 2002-07-25 08:01:27 arjen Exp $"; */
+/* static const char *RCSID = "$Id: xappl.h,v 1.2 2007-05-04 14:01:22 arjen Exp $"; */
 
 #ifndef XAPPL_H
 #define XAPPL_H
@@ -118,7 +123,7 @@ public:
    {
       tabsize = 100;
 
-      table = new (xw_list *)[tabsize];
+      table = new xw_list * [tabsize];
       for (unsigned i=0; i < tabsize; i++)
       {
          table[i] = 0;
@@ -129,7 +134,7 @@ public:
    {
       tabsize = size;
 
-      table = new (xw_list *)[size];
+      table = new xw_list * [size];
       for (unsigned i=0; i < tabsize; i++)
       {
          table[i] = 0;