So I'm building a c++11 library based on other libraries like opengl, SDL2, assimp,glm, etc... Only problem is that most of those libraries place their functions, or objects in the global namespace : this may conflict with my classes ! (for ex. assimp vectors and my Vector class...) So I thought of putting the libraries in a namespace instead of leaving them there to "pollute" the global namespace.
I thought of doing this :
namespace some_name_space
{
#include <some/kind/of/lib>
}
But I realized that there would still be a part of the library in the global namespace !
Any suggestions on how achieve this ?
PS : I could "wrap" the libs, but that wouldn't really be managable !
I guess what you want is placing all library's functions and classes into a namespace.
In this answer, I'll use
gl/gl.h
for an example.As far as I know, the line
#include <gl/gl.h>
will be replaced by all the code fromgl/gl.h
.if you want to move all classes and functions from
gl/gl.h
into a namespace (gl
for example), I should create an intermediate file called__gl.hpp
with a content like:Then, in your main file, use
#include "__gl.hpp"
instead of#include <gl/gl.h>
Note that macros may not be moved into
namespace gl
, because they're macros.But don't worry, because:
Almost macros have an UPPERCASE identifier and almost non-macros are lowercase or UpperAndLowerCase or lowerAndUpperCase or lower_case_and_underscore ...
If a macro is being redefined, the compiler will give you a warning. So, you needn't worry about namesake macro.
This way is also applicable for
windows.h
and some other libraries, but it can't be applied for almost C/C++ standard library.