views:

58

answers:

1

Hello!

That's 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 a header file, saving you the time to copy the function definitions from the header file? I mean, can it figure that there's no implementation for some method and generate an empty stub from the declaration found in the header file?

Thanks!
CFP.

+1  A: 

No this feature does not exist in the Visual Studio C++ implementation. Changes to a header file must be manually propagated to the source file and vice versa.

JaredPar
Thanks a lot! Pity VS can't do that =)
CFP
So the next question is does any of the available plug ins do it?
Fire Lancer
@Fire lancer: Seems there are none, I searched before... I thought it might be due to VS being able to do so, so I asked =)
CFP