Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There is one exception. It's sometimes handy to "import" names from one namespace to another. For example suppose some C++ compiler doesn't provide the `std::tr1::auto_ptr` template, which is used in qpid. www.boost.org Boost does provide a compatible `boost::auto_ptr` but it's in the boost namespace and qpid expects it in `std::tr1`. No problem, we create our own tr1/memory header file:

...