In C++: Is it possible to have a named enum be continued in a different file? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T13:24:27Zhttp://stackoverflow.com/feeds/question/267367http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/267367/in-c-is-it-possible-to-have-a-named-enum-be-continued-in-a-different-file1In C++: Is it possible to have a named enum be continued in a different file?KPexEAhttp://stackoverflow.com/users/136762008-11-06T01:10:11Z2008-11-06T19:33:21Z
<p>For example:</p>
<p>Base class header file has:</p>
<pre><code>enum FOO
{
FOO_A,
FOO_B,
FOO_C,
FOO_USERSTART
};
</code></pre>
<p>Then the derived class has:</p>
<pre><code>enum FOO
{
FOO_USERA=FOO_USERSTART
FOO_USERB,
FOO_USERC
};
</code></pre>
<p>Just to be clear on my usage it is for having an event handler where the base class has events and then derived classes can add events. The derived classes event handler would check for it's events and if the event was not for it, then it would pass the event down to the base class.</p>
<pre><code>class Base
{
public:
virtual void HandleFoo(FOO event);
};
class Derived: public Base
{
public:
void HandleFoo(FOO event);
};
void Base::HandleFoo(FOO event)
{
switch(event)
{
case FOO_A:
/* do stuff */
break;
case FOO_B:
/* do stuff */
break;
case FOO_B:
/* do stuff */
break;
}
}
void Derived::HandleFoo(FOO event)
{
switch(event)
{
case FOO_USERA:
/* do stuff */
break;
case FOO_USERB:
/* do stuff */
break;
case FOO_USERB:
/* do stuff */
break;
default:
/* not my event, must be for someone else */
Base::HandleFoo(event);
break;
}
}
</code></pre>
http://stackoverflow.com/questions/267367/in-c-is-it-possible-to-have-a-named-enum-be-continued-in-a-different-file/267390#2673902Answer by littlenag for In C++: Is it possible to have a named enum be continued in a different file?littlenaghttp://stackoverflow.com/users/147882008-11-06T01:23:09Z2008-11-06T01:28:44Z<p>Yes, as long as the enum's are both members of a class. If they weren't then they would be of the same type and the compiler would be very unhappy.</p>
http://stackoverflow.com/questions/267367/in-c-is-it-possible-to-have-a-named-enum-be-continued-in-a-different-file/268262#2682621Answer by MSalters for In C++: Is it possible to have a named enum be continued in a different file?MSaltershttp://stackoverflow.com/users/154162008-11-06T10:46:02Z2008-11-06T10:46:02Z<p>No. The compiler needs to be able to decide whether the enum fits in a char, short, int or long once it sees the }.</p>
<p>So if the base class header has</p>
<pre><code>enum Foo {
A,
B,
MAX = 1<<15
};
</code></pre>
<p>a compiler may decide the enum fits in 16 bits. It can then use that, e.g. when laying out the base class. If you were later able to add 1<<31 to the enum, the base class enum member would not be able to hold one of the enum values.</p>
http://stackoverflow.com/questions/267367/in-c-is-it-possible-to-have-a-named-enum-be-continued-in-a-different-file/269967#2699670Answer by Marcin for In C++: Is it possible to have a named enum be continued in a different file?Marcinhttp://stackoverflow.com/users/227242008-11-06T19:33:21Z2008-11-06T19:33:21Z<p>Yes, this works. To simplify your code a bit, I would suggest this, more common method of "extending" enums:</p>
<pre><code>enum FOO // Base class's FOO
{
FOO_A,
FOO_B,
FOO_C,
FOO_BASE_MAX // Always keep this as the last value in the base class
};
enum FOO // Derived class's FOO
{
FOO_USERA=FOO_BASE_MAX+1, // Always keep this as the first value in the derived class
FOO_USERB,
FOO_USERC
};</code></pre>
<p>You still need to watch out for "out of order" enums. (Example: FOO_A=15, FOO_B=11, etc.)</p>