用于生成 C++ 的 Visual Studio 2010 扩展代码?
我花了一整天的时间试图弄清楚VS2010是否可以使用变量生成代码模板。我正在学习 C++ 课程,希望避免每次创建新的 CPP 文件时进行复制/粘贴。我只是想为一个简单的 win32 控制台应用程序做这件事,所以它只是一个 cpp 文件。 VS2010 可以做到这一点吗?
/**
@file <Filename>
@author <Name>
@date <Date>
@version 1.0
*/
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
return 0;
}
谢谢,
低频4
I've been spending all day trying to figure out if it's possible for VS2010 to generate a code template using variables. I'm taking a C++ class wanted to avoid copy/pasting each time I create a new CPP file. I was just looking at doing it for a simple win32 console app so it's just once cpp file. Is this even possible with VS2010?
/**
@file <Filename>
@author <Name>
@date <Date>
@version 1.0
*/
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
return 0;
}
Thanks,
LF4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过创建项目然后使用导出模板向导将您的项目转换为项目模板来实现您想要的目的。您还可以手动创建项目模板。您可以在此处了解有关项目模板的更多信息。
对于更复杂的模板,您可以创建 Visual C++ 自定义向导。
You may be able to achieve what you want by creating a project and then use the Export Template Wizard to turn your project into a project template. You can also create a project template manually. You can read more about project templates here.
For more elaborate templates you can create a Visual C++ Custom Wizard.