This is only a small annoyance, but when you add an include (using refactoring) in a header file, if there are no includes already, it adds it before #pragma once at the top of the file.
Thanks, Tim
#pragma once
class A
{
CUnknown m_Member;
}
after adding include for CUnknown using VAX, you get
#include "unknown.h"
#pragma once
class A
{
CUnknown m_Member;
}