Removed the obsolete complex number test from acltest.
[AXE.git] / demos / acltest.cpp
index 7121166..689ddb1 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : acltest.cpp
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      :  Test routine for non-X classes
 **
 ********************************
 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
 **      CREATION DATE   : Feb 06, 1998
-**      LAST UPDATE     : Oct 16, 1999
+**      LAST UPDATE     : Jul 27, 2002
 **************************************************************************/
 
 /*****************************
    $Log: acltest.cpp,v $
-   Revision 1.1  2002-07-25 08:01:18  arjen
+   Revision 1.2  2002-07-27 06:34:06  arjen
+   Removed the obsolete complex number test from acltest.
+   BUG FIX: testaxe crashed when no configuration file is available.
+
+   Revision 1.1  2002/07/25 08:01:18  arjen
    First checkin, AXE release 0.2
 
 *****************************/
 
-static const char *RCSID = "$Id: acltest.cpp,v 1.1 2002-07-25 08:01:18 arjen Exp $";
+static const char *RCSID = "$Id: acltest.cpp,v 1.2 2002-07-27 06:34:06 arjen Exp $";
 
 #include "String.h"
 #include "integer.h" 
-#include "complex/complex.h" 
 #include "date.h"
 
 int main()
@@ -105,22 +108,6 @@ int main()
    c = b;
    cout << "c = b : c = " << c << "\n";
 
-   cout << "***********************\nComplex Number Test\n*********************\n";
-
-#if 0
-   complex z1, z2, z3;
-   z1 = complex(1,0);
-   z2 = complex(0,1);
-   z3 = z1 + z2;
-   cout << z1 << " + " << z2 << " = " << z3 << "\n";
-   z3 = z1 - z2;
-   cout << z1 << " - " << z2 << " = " << z3 << "\n";
-   z3 = z1 * z2;
-   cout << z1 << " * " << z2 << " = " << z3 << "\n";
-   z3 = z1 / z2;
-   cout << z1 << " / " << z2 << " = " << z3 << "\n";
-#endif
-   
    cout << "***********************\nDate Test\n*********************\n";
    date d1, d2(22,7,1964);