Automatically generate C++ Source and Header (and update vice versa on changes) files - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:23:33Z http://stackoverflow.com/feeds/question/976467 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/976467/automatically-generate-c-source-and-header-and-update-vice-versa-on-changes-f 3 Automatically generate C++ Source and Header (and update vice versa on changes) files The Unknown 2009-06-10T15:47:49Z 2009-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#976549 2 Answer by Klaim for Automatically generate C++ Source and Header (and update vice versa on changes) files Klaim 2009-06-10T16:01:18Z 2009-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#976605 3 Answer by Richard Corden for Automatically generate C++ Source and Header (and update vice versa on changes) files Richard Corden 2009-06-10T16:08:37Z 2009-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#976941 0 Answer by Dolphin for Automatically generate C++ Source and Header (and update vice versa on changes) files Dolphin 2009-06-10T17:09:32Z 2009-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>