"Mike Dunlavey" <[EMAIL PROTECTED]> writes:

> If I try the '#include <string>' statement instead of strclass.h,
> I get a much more longer and less helpful list of unresolved
> references.

Most likely you are doing something like this:

  gcc -c test.cpp     # compiles test.cpp in C++ mode, because of the .cpp 
extension
  gcc test.o          # links in C mode because 'gcc' is a *C* compiler.

Always use 'g++' to compile and link C++ code.

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to