T O P I C R E V I E W |
drzoom |
Posted - May 12 2006 : 04:02:47 AM I use thisfeature with KDevelop and it saves a lot of time.
If you place the cursor in a declaration line of a class |=cursor:
class Tomato { public: int getTomato() |const; // cursor is here };
And then press F2. The implementation body is created in the cpp file and the cursor is jumping to the implementation block:
int Tomato::getTomato() const { | // cursor is here. }
This even works with namespaces.
The method is inserted at one of this positions:
1. below the implementation of the definition above 2. at the end of the namespace. 2. at the end of the file.
|
1 L A T E S T R E P L I E S (Newest First) |
rhummer |
Posted - May 12 2006 : 09:22:08 AM This feature is part of the refactoring features being worked on they should be hitting public beta soon. We are currently doing internal beta testing to get things working ;) |