Reverse engineering C++ namespaces

The reverse engineering tool supports C++ namespaces.

For example, the following code is imported correctly:

namespace XXX {
   class CCC {
      int i;
   };
}

Namespaces are always converted to packages.


Feedback