Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c++ typedef another class's enum?

Tags:

c++

enums

typedef

So here's my problem:

struct A
{
    enum A_enum
    {
        E0,
        E1,
        E2
    };
};

struct B
{
    typedef A::A_enum B_enum;
    bool test(B_enum val)
    {
        return (val == E1); // error: "E1" undeclared identifier
    }
};

I specifically do not want to say A::E1. If I try B_enum::E1 I receive a warning that it is nonstandard. Is there a good way to do something like this?

like image 758
rlbond Avatar asked May 23 '09 18:05

rlbond


1 Answers

I reckon that A should be a namespace instead of a struct.

like image 119
ChrisW Avatar answered Oct 25 '22 16:10

ChrisW