This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC 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: C++ question - forward declaration for enum?


Eljay Love-Jensen <eljay@adobe.com> writes:

> class X
> {
>     int m;
> public:
>     X(type i) : m(i) { }
>     enum type { one, two, three };
> };
> 
> Is there a forward declaration?  Any proper C++ way to use the enum
> "type" before the full declaration of enum "type"?

No. Can't you just move the enum declaration before the declaration of
the constructor?

-- 
	Falk


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