Hi,
my problem below:
//1.h
class A
{
public:
enum B{a,b,c};
};
//2.h
how to declare enum B?
class C
{
public:
void func(A::B m);
};
Thank you very much!
--
[ See http://www.gotw.ca/resources/clcm.htm
for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]