Is it possible to do a macro that copies a definition of a function to a declaration(, and maybe also the opposite)? For instance
Foo::Foo(int aParameter, int bParameter){
//
}
int Foo::someMethod(char aCharacter) const {
return 0;
}
From the .cpp file would be:
class Foo {
Foo(int aParameter, int bParameter);
int someMethod(char aCharacter) const;
};
In the .cpp file.
Also:
If there are anyone with knowledge of good tutorials or documentation that aims at Visual Studio .Net (and maybe also covers the above problem) I would probably accept that as an answer as well
So, I found the Automation and Extensibility for Visual Studio, which covers the stuff I am trying to do, with a little help from the object browser and record macro function.
I guess I should be able to solve it from here.