Hi,
I've got construction of namespaces like this:
namespace one
{
namespace two
{
class SomeClass{...};
}
}
and when I try to use this class (without fully qualified name) in another file (also with nested namespaces) I'm getting errors. It doesn't even help if I place declaration of using this namespace in the file in which I'm intend to use this class. The only way I found is to use fully qalified names if there is more than one level of namespaces, but I hope that there is solution to this. Looking forward to your replays. Thank you.