You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
chribben
Posted - Oct 03 2008 : 01:53:01 AM 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
2 L A T E S T R E P L I E S (Newest First)
pilott
Posted - Oct 03 2008 : 3:22:50 PM I have been working with java in eclipse on a side project and very much miss this feature when I come back to work.
accord
Posted - Oct 03 2008 : 1:45:23 PM We are considering doing this at some point: