Commit 63fcf25a by Baruch Sterin

add a new #define ABC_NAMESPACE_USING_NAMESPACE that adds a using decelaration when needed

parent 11581ca9
......@@ -33,12 +33,14 @@
# define ABC_NAMESPACE_IMPL_START namespace ABC_NAMESPACE {
# define ABC_NAMESPACE_IMPL_END }
# define ABC_NAMESPACE_PREFIX ABC_NAMESPACE::
# define ABC_NAMESPACE_USING_NAMESPACE using namespace ABC_NAMESPACE;
# else
# define ABC_NAMESPACE_HEADER_START extern "C" {
# define ABC_NAMESPACE_HEADER_END }
# define ABC_NAMESPACE_IMPL_START
# define ABC_NAMESPACE_IMPL_END
# define ABC_NAMESPACE_PREFIX
# define ABC_NAMESPACE_USING_NAMESPACE
# endif // #ifdef ABC_NAMESPACE
#else
# define ABC_NAMESPACE_HEADER_START
......@@ -46,6 +48,7 @@
# define ABC_NAMESPACE_IMPL_START
# define ABC_NAMESPACE_IMPL_END
# define ABC_NAMESPACE_PREFIX
# define ABC_NAMESPACE_USING_NAMESPACE
#endif // #ifdef __cplusplus
#endif // #ifndef ABC__misc__util__abc_namespaces_h
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment