c++ adding method to class defined in header file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:21:17Z http://stackoverflow.com/feeds/question/248617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file 2 c++ adding method to class defined in header file Moomin 2008-10-29T22:11:11Z 2008-11-28T18:44:36Z <p>I'm wondering if it is possible to add methods in main program to an existing class defined in header file. For example: There is <code>class CFun</code> defined in file <code>CFun.hpp</code>, but in our <code>party.cpp</code> we want to add a method <code>void hello() {cout &lt;&lt; "hello" &lt;&lt; endl;};</code>without editing <code>CFun.hpp</code></p> <p>Obviously (unfortunately) construction:</p> <pre><code>#include "CFun.hpp" class CFun { public: void hello() {cout &lt;&lt; "hello" &lt;&lt; endl;}; }; </code></pre> <p>doesn't work returning an error <code>Multiple declaration for 'CFun'</code></p> <p>Is it possible to make it work without class inheritance?</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/248622#248622 0 Answer by Paul Nathan for c++ adding method to class defined in header file Paul Nathan 2008-10-29T22:12:39Z 2008-10-29T22:12:39Z <p>Not to my knowledge. Although, you could do some kind of jury-rigging and make a namespace-y solution.</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/248643#248643 5 Answer by Eclipse for c++ adding method to class defined in header file Eclipse 2008-10-29T22:20:44Z 2008-11-28T18:44:36Z <p>No, but you could add a method that takes a reference/pointer to a CFun class - you just won't have access to private data:</p> <pre><code>void Hello(CFun &amp;fun) { cout &lt;&lt; "hello" &lt;&lt; endl; } </code></pre> <p>This is probably the best you'll be able to do. As pointed out by litb - this function has to be in the same namespace as CFun. Fortunately, namespaces, unlike classes, can be added to in multiple places.</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/248644#248644 1 Answer by Dima for c++ adding method to class defined in header file Dima 2008-10-29T22:20:49Z 2008-10-29T22:20:49Z <p>No, that is not possible. There can only be one definition of any particular class, and it has to be a complete definition, meaning that you cannot have partial definitions in different places, adding members to the class.</p> <p>If you need to add a member function to a class, then either you have to change the class definition (edit CFun.hpp), or derive a new class from <code>CFun</code> and put <code>hello()</code> there.</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/248671#248671 0 Answer by Eclipse for c++ adding method to class defined in header file Eclipse 2008-10-29T22:30:55Z 2008-10-29T22:30:55Z <p>After thinking about it, you could do something terrible: Find some function in CFun that has a return type that you want, and is only mention once in the entire header. Let's say <code>void GoodBye()</code>.</p> <p>Now create a file CFunWrapper.hpp with this content:</p> <pre><code>#define GoodBye() Hello() { cout &lt;&lt; "hello" &lt;&lt; endl; } void GoodBye() #include "CFun.hpp" #undef GoodBye </code></pre> <p>Then only ever include CFunWrapper.hpp instead of CFun.hpp.</p> <p>But don't do this, unless there's some really good reason to do so. It's extremely prone to breaking, and may not even be possible, depending on the contents of CFun.hpp.</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/248676#248676 0 Answer by Harper Shelby for c++ adding method to class defined in header file Harper Shelby 2008-10-29T22:33:38Z 2008-10-29T22:33:38Z <p>The closest analog to that sort of construct (adding functionality to predefined classes) in C++ is the Decorator pattern. It's not exactly what you're after, but it may allow you to do what you need.</p> http://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file/324915#324915 0 Answer by MT_Pockets for c++ adding method to class defined in header file MT_Pockets 2008-11-28T01:26:56Z 2008-11-28T01:26:56Z <pre><code>class Party : class CFun </code></pre> <p>(your party.cpp)</p> <p>inherits CFun stuff, including hello() function.</p> <p>So...</p> <pre><code>Party p; p.hello(); </code></pre> <p>No?</p>