I’m new to DSL. I have Windows 7 and Visual Studio 2012. I have already installed Visualization and Modeling SDK http://msdn.microsoft.com/en-us/library/bb126259.aspx
Currently, this is outputting C# code. I was wondering if there is anything that I can do to have the code output as C++? Has anyone done this? Do I have to use another tool? or an add-in?
You can do one of the following:
Convert the code from C# to C++/CLI (see here),
If you’re aiming at calling the code from C++, you can build a C++/CLI bridge between the unmanaged code and the managed code.