vote up 15 vote down star
2

One of the vagaries of my development system (Codegear C++Builder) is that some of the auto-generated headers insist on having...

using namespace xyzzy

...statements in them, which impact on my code when I least want or expect it.

Is there a way I can somehow cancel/override a previous "using" statement to avoid this.

Maybe...

unusing namespace xyzzy;
flag

71% accept rate
You should probably open a bug report with their QC system: qc.codegear.com – Kris Kumler Oct 3 '08 at 18:23
BTW, which auto-generated headers are these? – Kris Kumler Oct 17 '08 at 16:36

5 Answers

vote up 9 vote down check

Nope. But there's a potential solution: if you enclose your include directive in a namespace of its own, like this...

namespace codegear {
    #include "codegear_header.h"
} // namespace codegear

...then the effects of any using directives within that header are neutralized.

That might be problematic in some cases. That's why every C++ style guide strongly recommends not putting a "using namespace" directive in a header file.

link|flag
In general, this is a terrible idea. C++ headers are not intended to be included in an alternately namespace as was used here. – Aaron Oct 3 '08 at 18:06
1  
It's a terrible idea to include a using directive in a header file too. This simply mitigates that problem. – Head Geek Oct 3 '08 at 18:16
Placing the header in your own namespace is not a solution as it changes the meaning of the declarations in that library. (-1) – Richard Corden Oct 5 '08 at 14:57
That's why I said it might be problematic in some cases. Roddy didn't include any details on the contents of these auto-generated headers included. – Head Geek Oct 5 '08 at 16:30
"Problematic" doesn't quite sum up that it will result in undefined behaviour - which if you're lucky may result in link errors. – Richard Corden Oct 6 '08 at 0:08
show 3 more comments
vote up 5 vote down

No you can't unuse an namespace. The only thing you can do is putting the using namespace-statement a block to limit it's scope.

Example:

{
    using namespace xyzzy;

} // stop using namespace xyzzy here

Maybe you can change the template which is used of your auto-generated headers.

link|flag
Can you wrap an include in a block like this though? – Eclipse Oct 3 '08 at 17:43
Yes this won't with auto generated code. Byt mybe he can change the template for the auto generated code? – jk Oct 3 '08 at 17:53
Yeah this doesn't really address the problem he's having of headers using namespaces. – Kip Oct 3 '08 at 17:57
vote up 1 vote down

Quick experiment with Visual Studio 2005 shows that you can enclose those headers in your own named namespace and then use what you need from this namespace (but don't use the whole namespace, as it will introduces the namespace you want to hide.

link|flag
This will likely cause name-mangling issues if the header files are declarations for a library. The compile will succeed, but the linker won't be able to find the definitions, as they would have already been compiled in a different namespace. – Eclipse Oct 3 '08 at 17:42
vote up 4 vote down

You may be stuck using explicit namespaces on conflicts:

string x; // Doesn't work due to conflicting declarations
::string y; // use the class from the global namespace
std::string z; // the stl string class from the std namespace
link|flag
vote up 4 vote down

How about using sed, perl or some other command-line tool as part of your build process to modify the generated headers after they are generated but before they are used?

link|flag
In case there are many headers, this might be too slow – doc Nov 15 at 6:45
sed slower that code generator? Hard to believe... – Arkadiy Nov 16 at 19:51

Your Answer

Get an OpenID
or

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