This is the mail archive of the gdb@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: nested namespace and enum


Would like to hear an opinion on this declaration.

namespace N
{
class C 
{
    public:
        ~C(){}
        C() {}
        typedef enum 
        {
                EV_X,
                EV_Y, 
                EV_Z
        } Events;
};
}


Now looking at the above declaration I would access the enum EV_X as
follows:

N::C::EV_X

Is this an acceptable declaration?
Please comment when you get a chance, thank-you
Kiran


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]