Home > Windows API > Renaming lengthy namespaces in C++

Renaming lengthy namespaces in C++

So if you have a namespace like std::tr1 you can rename it likewise

namespace tr1=std::tr1; // New name will be tr1
using namespace tr1; // Using this new name

  1. No comments yet.
  1. No trackbacks yet.