If the source file already contains a namespace definition, I'd like VAX to put the implementation into the existing namespace in the source file instead of adding it to the bottom of the file and prefixing the class name with the namespace. Or maybe this could be made an option to toggle in the VAX options dialog.
Example:
// **** header file:
namespace ns
{
class A
{
void f();
};
}
// **** source file:
namespace ns
{
// this is where I would like the function to be:
void A::f()
{
}
}
// this is where it currently ends up:
void ns::A::f()
{
}