home *** CD-ROM | disk | FTP | other *** search
- //***************************************************************************
- // OATH :: Object-oriented Abstract Type Hierarchy
- //***************************************************************************
- //
- // Copyright (C) 1991 Texas Instruments Incorporated
- // Permission is granted to any individual or institution
- // to use, copy, modify, and distribute this software,
- // provided that this complete copyright and permission notice
- // is maintained, intact, in all copies and supporting documentation.
- //
- // Texas Instruments Incorporated provides this software "as is"
- // without express or implied warranty.
- //
- //***************************************************************************
- // complex (complexA, complexG)
- // real (realA, realG)
- // rational (rationalA, rationalG)
- // integer (integerA, integerG)
- //
- // History:
- // 06/91 Brian M Kennedy New macros & format; remove printDiagnostic
- // 02/91 Brian M Kennedy Original
- //
- //***************************************************************************
-
- #include "copyright.h"
-
- #include <oath/numeric.h>
-
- /////////////////////////////////////////////////////////////////////////////
- // complex Outlines
-
- OUTLINES(complex, obj)
-
- /////////////////////////////////////////////////////////////////////////////
- // real Outlines
-
- OUTLINES(real, complex)
-
- /////////////////////////////////////////////////////////////////////////////
- // rational Outlines
-
- OUTLINES(rational, real)
-
- /////////////////////////////////////////////////////////////////////////////
- // integer Outlines
-
- OUTLINES(integer, rational)
-
- //***************************************************************************
-