I have read tutorials using my google-fu on how to set up Pre-Compiled Headers, and now I wanted to clear up a few questions:
If all the 'to be pre-compiled' headers go in one file - "stdafx.h" then how do you say you only want 1 of those files in your 'unstable' class headers/implementations?
If the said PCH header only goes at the top of your implementation (.cpp) file then how is your class in the header (.h) file supposed to know about objects?
Does the compiler know because it is included before the implementation includes its own header?
Arrrh there any pitfalls I should know about?
Thanks in advance...