What is the purpose of the file stdafx.h and what is meant by precompiled headers?
|
|
|||||
|
|
|||||
|
|
To expand on the other excellent answers:
The name To produce the actual precompiled header file, you need one source file in the project that has special compile flags to produce precompiled output. By convention this file is named |
||||
|
|
|
It's typically used for the name of precompiled headers. Although using that exact name is not required, just the default. I explain more about pre-compiled headers on VC++ and g++ here. You use precompiled headers for faster compilation. The idea is that you put any header file that will not change, and that you use in several source files inside your precompiled header. Then the compiler will not need to reprocess those headers for each compilation unit. |
|||
|
|
|
It's a precompiled header, to reduce compilation times. |
|||
|
|