In the private section of my class there are a lot of functions, let's say there are:
- 3 functions for purpose A
- 5 for purpose B
- 1 for purpose C
I was wondering if it was okay to make a .h file which contains all of the Purpose A functions, one for purpose B and one for C and then include each in the middle of the class definition.
If it's considered bad practice, what is the best way to compact these functions prototypes ?