Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0c908b274ce9325905212534e92c7dae1e5b62d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace A 
{ 
	class ForwardA;
	ForwardA * tmp;
	int something(void);
	namespace B 
	{ 
		enum e1{dude1,dude2};
		int x;  
		class C 
		{	static int y = 5; 
			static int bar(void);
		}; 
	} 
} 
using namespace A::B;
using A::B::x;
using A::B::C;
using A::B::C::y;
using A::B::C::bar;
using A::something;
using A::B::e1;

Back to the top