vote up 3 vote down star
1

Is there some tool (hopefully emacs) that can update and add the correct function definitions and other things to keep the source (.cpp) and the header (.h) files synchronized.

For example if I start doing this

file: aaa.h

Class AAA {
   int b;
public:
   void func();
};

something that will automatically create and add

file: aaa.cpp

void AAA:func() {

}

And any changes will appear on both?

Am I just dreaming too much?

flag

74% accept rate

3 Answers

vote up 0 vote down

Xrefactory (fairly expensive tool) might be able to do what you are looking for. I haven't used it (I use Visual Studio + Visual Assist myself) but it shows up on a google search for 'emacs refactoring tools'.

link|flag
vote up 2 vote down

An almost duplicate question was asked here and my answer describes the tool that we use to go from a single file to separate header and source files: lzz.

I don't know of any tool that can do the reverse translation.

link|flag
vote up 2 vote down

Visual Studio + Visual Assist X does it (see Refactoring features).

But indeed, it's not emacs based :/

link|flag
Just to clarify, VA does not do this completely automatically. You would need to invoke Create Implementation to create a stub implementation from the declaration. You would need to run Change Signature to modify both the declaration and implementation. – sean e Jun 10 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.