Tagged Questions

5
votes
11answers
7k views

Multiple classes in a header file vs. a single header file per class

For whatever reason, our company has a coding guideline that states: Each class shall have it's own header and implementation file. So if we wrote a class called MyString we would need an associated ...
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 ...