c++ adding method to class defined in header file - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:21:17Zhttp://stackoverflow.com/feeds/question/248617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248617/c-adding-method-to-class-defined-in-header-file2c++ adding method to class defined in header fileMoomin2008-10-29T22:11:11Z2008-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 << "hello" << 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 << "hello" << 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#2486220Answer by Paul Nathan for c++ adding method to class defined in header filePaul Nathan2008-10-29T22:12:39Z2008-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#2486435Answer by Eclipse for c++ adding method to class defined in header fileEclipse2008-10-29T22:20:44Z2008-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 &fun)
{
cout << "hello" << 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#2486441Answer by Dima for c++ adding method to class defined in header fileDima2008-10-29T22:20:49Z2008-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#2486710Answer by Eclipse for c++ adding method to class defined in header fileEclipse2008-10-29T22:30:55Z2008-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 << "hello" << 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#2486760Answer by Harper Shelby for c++ adding method to class defined in header fileHarper Shelby2008-10-29T22:33:38Z2008-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#3249150Answer by MT_Pockets for c++ adding method to class defined in header fileMT_Pockets2008-11-28T01:26:56Z2008-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>