I\'m just teaching myself C++ namespaces (coming from a C# background) and I\'m really starting to think that even with all the things that C++ does better than most other l
Atleast as a small help, in some cases you can do this:
namespace foo = A::B::C::D;
And then reference A::B::C::D as foo. But only in some cases.