Question about Organizing Code

Hi,

I have written a lot of functions for my class and it's all stuck on one file, so it's very hard to read since it's very long, is there a way to separate or hide some of the helper functions into another file so that the code will be more readable and maybe stick a include header at the top of my cpp file?

[322 byte] By [tester_abc] at [2008-1-7]
# 1

Yes, it's always there, you just put the related functions together and move them to new file. If you are referring any of them in other files, then you need to provide their declaration (signature) in header file and include it wherever required.

RamkrishnaPawar at 2007-10-2 > top of Msdn Tech,Visual C++,Visual C++ Language...