Tagged Questions
5
votes
11answers
7k views
Multiple classes in a header file vs. a single header file per class
For whatever reason, our company has a coding guideline that states:
Each class shall have it's own header and implementation file.
So if we wrote a class called MyString we would need an associated ...
0
votes
2answers
23 views
separation of js / css and it's effect on caching
Say I have the following setup:
Page1.html
Includes master.css, page1.css and page1.js
Page2.html
Includes master.css, page2.css and page2.js
I have been told that merging the two js and ...