Can VS 2010 check / update header files automatically?

This is pretty much my question: can VS 2010 check and update header files in C ++ code automatically? And can VS 2010 automatically generate a cpp file from the header file, saving time for copying function definitions from the header file? I mean, can he understand that there is no implementation for any method and generate an empty stub from the declaration found in the header file?

Thanks!
CFP

+4
source share
1 answer

This function does not exist in the implementation of Visual Studio C ++. Changes to the header file must be manually transferred to the source file and vice versa.

+4
source

All Articles