C/C++
cppname.asc
Associated article: C++ Namespaces
Tags: Database C/C++ Design
_C++ NAMESPACES_
by Tom Pennello
Example 1:
(a)
namespace identifier {
... list of zero or more declarations
}
(b)
namespace A { // Declare A as a namespace.
int f() { ... }
typedef int T;
}
...
namespace A { // Add more to namespace A.
int g();
}
(c)
namespace Distributed_...


