Thread overview
What .h files does DigitalMars use in ths case?
Sep 29, 2002
Aurura
Sep 29, 2002
Walter
Found It
Sep 30, 2002
Aurura
Sep 30, 2002
Walter
September 29, 2002
In a C++ training manual I have, two .h files they've used in their programming examples are:

#include <iostream.h>
#include "string6.h"

to teach executing string commands.

I found neither of  these files in DigiMars' program files...  So, which files do I use instead?

Me



September 29, 2002
"Aurura" <aurura@ev1.net> wrote in message news:an7hbo$209b$1@digitaldaemon.com...
> In a C++ training manual I have, two .h files they've used in their
programming
> examples are:
>
> #include <iostream.h>
> #include "string6.h"
>
> to teach executing string commands.
>
> I found neither of  these files in DigiMars' program files...  So, which
files
> do I use instead?

iostream.h is in \dm\include and in \dm\stlport\stlport.

string6.h is a nonstandard file, and no compiler I know of has it.


September 30, 2002
Must've overlooked it.. Thank you, Walter.

Me

P.S.  since the string6.h was a nonstandard file, does this imply that one can create .h files for streams if needed?




September 30, 2002
"Aurura" <aurura@ev1.net> wrote in message news:an88ie$2n6p$1@digitaldaemon.com...
> Must've overlooked it.. Thank you, Walter.
>
> Me
>
> P.S.  since the string6.h was a nonstandard file, does this imply that one
can
> create .h files for streams if needed?

You can create any .h files you want to. They are just text files with ordinary C++ source in them.