Tagged Questions
2
votes
8answers
1k views
Should I put many functions into one file? Or, more or less, one function per file?
I love to organize my code, so ideally I want one class per file or, when I have non-member functions, one function per file.
The reasons are:
When I read the code I will always
know in what file I ...