Help me understand splitting c++ code into source files and headers
zygo_histo_morpheus @ zygo_histo_morpheus @programming.dev Posts 1Comments 176Joined 2 yr. ago
zygo_histo_morpheus @ zygo_histo_morpheus @programming.dev
Posts
1
Comments
176
Joined
2 yr. ago
Deleted
Permanently Deleted
Deleted
Permanently Deleted
For the record: headers suck. There's a good reason why most programming languages don't use them. They're like a realy primitive version of setting things to public/private in modules, where public things go in the header and private things don't. Modules are a very useful abstraction over this where you don't have to do as much mucking around.