In VC++ 2017, is there a quick way of typing the member function declaration in the header file, and then it automatically builds the required body for you in the .cpp file?
For example, typing
void show();
in Vector2.h, can create the body
void show() { };
in the Vector2.cpp file with some keyboard shortcut.