Question
Enums: Can they do in .h or must stay in .cpp?
If I have something like:
enum
{
kCP_AboutBox_IconViewID = 1,
kCP_AboutBox_AppNameViewID = 2,
kCP_AboutBox_VersionViewID = 3,
kCP_AboutBox_DescriptionViewID = 4,
kCP_AboutBox_CopyrightViewID = 5
};
in my .cpp can it go in the .h?
More so, what other lesser know things can you put in a .h besides class definitions, variables, etc, etc