1 struct Foo { 2 virtual void bar(); 3 virtual void baz(); 4 } foo; 5 6 void tweak(int); bar()7 void Foo::bar() { tweak(0); } baz()8 void Foo::baz() { tweak(1); } 9