c++.dos - What .h files does DigitalMars use in ths case?
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
Sep 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 theirprogrammingexamples are: #include <iostream.h> #include "string6.h" to teach executing string commands. I found neither of these files in DigiMars' program files... So, whichfilesdo 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.
Sep 29 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?
Sep 29 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 onecancreate .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.
Sep 29 2002