Sure. This is build 1940, BTW.
#define HK_OVERRIDE override
struct Foo
{
virtual void foo();
};
struct Bar : public Foo
{
void foo() HK_OVERRIDE;
};
Right click Bar::foo, "Create Implementation". The following is added:
void Bar::foo() HK_OVERRIDE
{
}