Given this example:
class MyClass
{
static MyType m_staticVariable;
};
It would be nice if VA would have the menu entry "Create Implementation" active and the result would be:
(in myclass.cpp)
MyType MyClass::m_staticVariable;
And for header only classes:
__declspec(selectany) MyType MyClass:m_staticVariable;