vote up 1 vote down star

I like the concept of C++ namespaces, because they help to keep the source code concise while avoiding name conflicts. In .cpp files this works very well, using the "using namespace" declaration. However, in header files this cannot be used, as it "breaks open" the namespace, meaning that the "using namespace" not only applies within the current header file, but to everything that is compiled thereafter. This partly nullifies the advantage of namespaces. Consider for example a header file in which the classes "ourlib::networking::IpAddress" and "ourlib::filesystem::Path" are frequently used.

Is there a way to limit the effect of the "using namespace"-declaration in header files?

flag

30% accept rate

4 Answers

vote up 0 vote down

No, it can't be done :(

link|flag
vote up 2 vote down

You may put, most of frequently use classes in ::ourlib namespace like

namespace ourlib {
   using networking::lpAddress;
}

So, if they unique in the project, most likely you would not have problem. So in, any place in headers you would be able access lpAddress directly without putting in into global namespace (I assume all your headers inside namespace ourlib)

link|flag
vote up 10 vote down

Like all declarations, using declarations obey scope. So if you use one in a class definition, it doesn't leak to global scope. E.g.

#ifndef FOO_H
#define FOO_H
#include "bar.h"

class Foo {
    using Bar::things;
};
#endif
link|flag
vote up 0 vote down

You can just import single classes:

using ourlib::networking::lpAddress;

At least if I remember correctly ;)

This might pollute the global namespace still, though. I tend to just live with the long namespace prefixes in header files. This makes it easier to read the header file for other developers (since you don't have to lookup which class comes from which namespace).

link|flag
1  
> This might pollute the global namespace< this would pollute to global namespace – Artyom Jun 22 at 8:55
Depends on what you mean by polluting. In my opinion, importing a single class can by fine if it is limited to implementation files by including a header. I usually only include headers in other headers if it's absolutely necessary, and go with forward declarations instead. That is rather to improve compile times though. – OregonGhost Jun 22 at 8:57
I forgot to add, other than that, I agree with you. As I said, I use fully qualified names mostly. – OregonGhost Jun 22 at 8:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.