Tagged Questions
The global-namespace tag has no wiki summary.
4
votes
2answers
833 views
How to force a C# root namespace throughout project files for when none is coded?
I want to force a root namespace on the contents of any .cs source files that don't have their contents wrapped in an explicit namespace. In other words I want to keep classes and other ...
3
votes
3answers
385 views
Why is including “using namespace” into a header file a bad idea in C++?
While reading from Bruce Eckel's "Thinking in C++" about namespaces, I encountered the following statement:
However you'll virtually never see a
using directive in a header file
(at least not ...
3
votes
2answers
644 views
How can I inject Javascript (including Prototype.js) in other sites without cluttering the global namespace?
I'm currently on a project that is a big site that uses the Prototype library, and there is already a humongous amount of Javascript code.
We're now working on a piece of code that will get ...
2
votes
1answer
565 views
Doxygen/C++: Global namespace in namespace list
Can I show the global namespace in the namespace list of the documentation generated with Doxygen? I have some functions which are extern "C", they appear in the documentation of the header file that ...
1
vote
2answers
62 views
Conditional Namespace in Winform application
I want to know better way to define name-spaces in my projects. We have 2 different winform projects and there are certain code files and forms which we use in both project. So the structure of ...
1
vote
6answers
354 views
Should we be teaching beginners to use a global namespace?
NOTE: I am pretty much a beginner myself. This question concentrates on C++ usage, since that is the only language I have experience with.
There seems to be a consensus on Stack Overflow to use using ...
0
votes
2answers
455 views
'Node' is not a member of global namespace?
I don't know whats wrong with the code, but keep getting these error messages in visual studio.
Error 18 error C1903: unable to recover from previous error(s); 29
Error 15 error C2039: 'Node' ...
0
votes
4answers
175 views
Can you pass values to included files in PHP without using globals?
A pattern I tend to use often in PHP is setting a few globals (such as $page, $user, $db, etc), and then including a file which uses those globals. I've never liked the idea of using globals for this, ...