Automatically generate C++ Source and Header (and update vice versa on changes) files - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T09:23:33Zhttp://stackoverflow.com/feeds/question/976467http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/976467/automatically-generate-c-source-and-header-and-update-vice-versa-on-changes-f3Automatically generate C++ Source and Header (and update vice versa on changes) filesThe Unknown2009-06-10T15:47:49Z2009-06-10T17:09:32Z
<p>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. </p>
<p>For example if I start doing this</p>
<pre><code>file: aaa.h
Class AAA {
int b;
public:
void func();
};
</code></pre>
<p>something that will automatically create and add</p>
<pre><code>file: aaa.cpp
void AAA:func() {
}
</code></pre>
<p>And any changes will appear on both?</p>
<p>Am I just dreaming too much?</p>
http://stackoverflow.com/questions/976467/automatically-generate-c-source-and-header-and-update-vice-versa-on-changes-f/976549#9765492Answer by Klaim for Automatically generate C++ Source and Header (and update vice versa on changes) filesKlaim2009-06-10T16:01:18Z2009-06-10T16:01:18Z<p>Visual Studio + <a href="http://www.wholetomato.com" rel="nofollow">Visual Assist X</a> does it (see Refactoring features).</p>
<p>But indeed, it's not emacs based :/</p>
http://stackoverflow.com/questions/976467/automatically-generate-c-source-and-header-and-update-vice-versa-on-changes-f/976605#9766053Answer by Richard Corden for Automatically generate C++ Source and Header (and update vice versa on changes) filesRichard Corden2009-06-10T16:08:37Z2009-06-10T16:08:37Z<p>An almost duplicate question was asked <a href="http://stackoverflow.com/questions/652779/automatically-separate-class-definitions-from-declarations">here</a> and my <a href="http://stackoverflow.com/questions/652779/automatically-separate-class-definitions-from-declarations/653758#653758">answer</a> describes the tool that we use to go from a single file to separate header and source files: <a href="http://www.lazycplusplus.com" rel="nofollow">lzz</a>.</p>
<p>I don't know of any tool that can do the reverse translation.</p>
http://stackoverflow.com/questions/976467/automatically-generate-c-source-and-header-and-update-vice-versa-on-changes-f/976941#9769410Answer by Dolphin for Automatically generate C++ Source and Header (and update vice versa on changes) filesDolphin2009-06-10T17:09:32Z2009-06-10T17:09:32Z<p>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'.</p>