What should go into an .h file?

后端 未结 12 843
伪装坚强ぢ
伪装坚强ぢ 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:58

    • Header files - shouldn't change during development too often -> you should think, and write them at once (in ideal case)
    • Source files - changes during implementation

提交回复
热议问题