 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Sat Jul 15, 2006 1:56 am Post subject: Enum names visibility |
|
|
Hello,
I have the following problem. I have this source
class A {
enum E { /* something */ };
};
I f i want to reference the elements of E in an unrelated function,
I have to use A::enum_element_name notation. How could I omit
the A:: part?
I cannot use the using declaration, am I right? Is making all my
function static methods of the class containing (or inheriting) all
enums the only way to do it? (One use of such "pattern" is the Qt
library)
Thanks for your answers
Jiri Palecek
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|