0
votes
C project structure - header-per-module vs. one big header
In C++ you would definitely want one header file per class and use pre-compiled headers as mentioned above.
One header file for an entire project is unworkable unless the project is extreme …
0
votes
break in a case with return.. and for default
I would put the break in to show that you do not intend to fall through to next case.
…
