I am currently working with managed code in c++ and it would be nice to just let VAX add the correct using directive at the top of the file.
E.g. i am writing somewhere in the file
Hashtable* table = new Hashtable();
After calling the function VAX has added the following line at the top of the file
using namespace System::Collections;
optionally it could remove all occurences of System::Collection anywhere in the file as they have now become extraneous.
Similarly it would be nice to be able to prepend the namespace to the class or method
e.g.
Collections::Hashtable* table = new Hashtable();
becomes
Collections::Hashtable* table = new Collections::Hashtable();
thanks