In C++: Is it possible to have a named enum be continued in a different file? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T13:24:27Z http://stackoverflow.com/feeds/question/267367 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267367/in-c-is-it-possible-to-have-a-named-enum-be-continued-in-a-different-file 1 In C++: Is it possible to have a named enum be continued in a different file? KPexEA http://stackoverflow.com/users/13676 2008-11-06T01:10:11Z 2008-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#267390 2 Answer by littlenag for In C++: Is it possible to have a named enum be continued in a different file? littlenag http://stackoverflow.com/users/14788 2008-11-06T01:23:09Z 2008-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#268262 1 Answer by MSalters for In C++: Is it possible to have a named enum be continued in a different file? MSalters http://stackoverflow.com/users/15416 2008-11-06T10:46:02Z 2008-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&lt;&lt;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&lt;&lt;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#269967 0 Answer by Marcin for In C++: Is it possible to have a named enum be continued in a different file? Marcin http://stackoverflow.com/users/22724 2008-11-06T19:33:21Z 2008-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>