Because I\'ve made .cpp files then transfered them into .h files, the only difference I can find is that you can\'t #include .cpp files. Is there any difference that I am m
A good rule of thumb is ".h files should have declarations [potentially] used by multiple source files, but no code that gets run."