using declaration does not seem to work with enum type

class Sample{
public:
enum Colour { RED,BLUE,GREEN};
}

using Sample::Colour;

does not work!! do we need to add using declaration for every enumerators of enum type? like below

using sample::Colour::RED;
link|improve this question

Is there any other way to do this – yesraaj Jan 13 '09 at 7:22
1  
Not really relevant to your question per se but I would strongly advise you not to use all-uppercase identifiers for enums and constants. Preprocessor #defines are usually all-uppercase in C/C++ and they -will- mangle other symbols with the same name. – Timo Geusch Jan 13 '09 at 10:05
Using the scope resolution operator :: on enums (as in "sample::Colour::RED") is a compiler-specific extension, not standard C++. – bk1e Jan 13 '09 at 17:50
feedback

3 Answers

up vote 8 down vote accepted

A class does not define a namespace, therefore "using" isn't applicable here.

Also, you need to make the enum public.

If you're trying to use the enum within the same class, here's an example:

class Sample {
 public:
  enum Colour { RED, BLUE, GREEN };

  void foo();
}

void Sample::foo() {
  Colour foo = RED;
}

And to access it from without the class:

void bar() {
  Sample::Colour colour = Sample::RED;
}
link|improve this answer
feedback

C++ Standard, 7.3.3.1:

The member name specified in a using-declaration is declared in the declarative region in which the using-declaration appears. [ Note: only the specified name is so declared; specifying an enumeration name in a using-declaration does not declare its enumerators in the using-declaration’s declarative region. —end note ]

link|improve this answer
1  
C++ Standard or A Night at the Opera? (Sorry, couldn't resist). – Gorpik Jan 13 '09 at 8:43
Could you explain me this idiom, I'm not very strong in English? :) – Igor Semenov Jan 13 '09 at 9:42
1  
I am not sure the standard is written in English. Looks a lot like lawyer speak :-) – Loki Astari Jan 13 '09 at 10:00
Actually, I meant "C++ Standard or A Night at the Opera?" – Igor Semenov Jan 13 '09 at 11:36
feedback

To add to Stevela's answer, the problem with the original code is that you refer to a member, but the using declaration is not itself a member declaration:

7.3.3/6 has:

A using-declaration for a class member shall be a member-declaration.

To highlight this, the following example does work:

class Sample
{
public:
  enum Colour { RED,BLUE,GREEN};
};

class Derived : public Sample
{
public:
  using Sample::Colour;  // OK
};

Finally, as pointed out by Igor Semenov here, even if you move the enum definition into a namespace, thereby allowing the using declaration, the using declaration will only declare the name of the enum type into the namespace (The 2003 standard reference is 7.3.3/2).

namespace Sample
{
  enum Colour { RED,BLUE,GREEN};
}

using Sample::Colour;
using Sample::BLUE;


void foo ()
{
  int j = BLUE; // OK
  int i = RED;  // ERROR
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.