Is it a good programming practice to have a class with several .h files?
- by Jim Thio
I suppose the class have several different interfaces. Some it shows to some class, some it shows to other classes.
Are there any good reason for that?
One thing I can think of is with one .h per class, interface would either be public or private.
What about if I want some interface to be available to some friends' class and some interface to be…