Reputation: 4339
Up to now I have always adding a new non-MFC C++ class in Visual Studio (I use 2010 these days) by right clicking on "Header Files" and adding a header file for the class and then right clicking on "Source Files" and adding a source file for the class. I then fill out the contents manually. It takes under a minute but it would be SO nice if there was a wizard for this.
Is there a wizard to add a new non-MFC C++ class in VS2010?
Upvotes: 0
Views: 481
Reputation: 860
Right click on the project in Solution Explorer. Click Add->Class, you can find C++ class in the pop-up window.
Upvotes: 1