<<< Namespace usage | Index | The std namespace >>> |
Can also import everything at once:
using namespace mylibrary; // using directive
Namespaces may have using declarations:
namespace mylibrary { using otherlib::IntStack; // using declaration //... }
<<< Namespace usage | Index | The std namespace >>> |