Mail Archives: djgpp/2000/05/15/03:46:39
On Mon, 15 May 2000, Alexei A. Frounze wrote:
> I've found a strange solution...
>
> Now my rpogram looks like:
> ------------8<-------------
> #include <iostream.h>
> #include <_Complex.h>
That's not a good solution: _Complex.h is a non-standard header from
libg++ distribution. The libg++ classes are deprecated and should not
be used, especially in portable programs, as you yourself discovered:
> The source code is no more portable.
>
> Borland C/C++ doesn't have the "_Complex.h" header file and there is no
> class with name "Complex" in "complex.h".
>
> Watcom C/C++ has no the "_Complex.h" header file but have a typedef that
> makes "complex" the same as "Complex".
> Please explain me the purpose of these include/header files from the
> "djgpp/lang/cxx" directory:
What do you need to know? <complex> defines the float_complex,
double_complex, and long_double_complex types, <complex.h> is an alias
for <complex> (kept for back-compatibility), and <_Complex.h>
(originally Complex.h) is the libg++-specific header that defines the
Complex type.
- Raw text -