Hello, I would like a function that automatically inserts a declaration and an implementation body for a called method that does not yet exists. Like so: void MyClass::AMethod() { int i = 2; bool b = ANewMethod(i); }
In this example I want the functionality to create the following when ANewMethod is selected: bool ANewMethod(int i); //Declaration in the header file
bool MyClass::ANewMethod(int i) //Body in the impl-file { } Best regards, Christian