I have a c++ class that is very large (>90k lines) that I need to split up between multiple files.
The way it is now I have a header file with all the declarations "x.h", and a c++ source file that contains all the functions in "y.cpp". I need to be able to split the functions up between two files like "y.cpp" and "z.cpp". The primary reason being that the VC++ IDE doesn't work with lines after line 65535 and doesn't allow debugging any function or parts of functions after line 65535. -TIA _______________________________________________ http://www.mccmedia.com/mailman/listinfo/brin-l
