 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
bjorn@4roald.org Guest
|
Posted: Tue Apr 26, 2005 5:22 am Post subject: nested namespaces and readability of code |
|
|
Code of the form:
namespace A
{
namespace B
{
namespace C
{
class MyClass
{
...
};
...
}
}
}
is more and more common. To me, it seems like the form:
namespace A::B::C
{
class MyClass
{
...
};
...
}
would be a natural and simple extention of the language having the same
meaning. Has this been considdered or proposed?
--
--------
Bjørn Roald
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.jamesd.demon.co.uk/csc/faq.html ]
|
|
| 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
|
|