VS 2010可以自动检查/更新头文件吗?
这几乎就是我的问题:VS 2010 可以自动检查和更新 C++ 代码中的头文件吗? VS 2010可以自动从头文件生成cpp文件,从而节省您从头文件复制函数定义的时间吗?我的意思是,它是否可以认为某些方法没有实现,并从头文件中找到的声明生成一个空存根?
谢谢!
金融理财师。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否,Visual Studio C++ 实现中不存在此功能。对头文件的更改必须手动传播到源文件,反之亦然。
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.