What should go into an .h file?

后端 未结 12 930
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 15:26

When dividing your code up into multiple files just what exactly should go into an .h file and what should go into a .cpp file?

12条回答
  •  醉梦人生
    2020-11-22 15:49

    in addition to all other answers, i will tell you what you DON'T place in a header file:
    using declaration (the most common being using namespace std;) should not appear in a header file because they pollute the namespace of the source file in which it is included.

提交回复
热议问题