Hi,
create in a header something.h and add the following code:
class MyClass {
public:
struct Member {
int foo;
};
const Member& getMember(void);
};
Placing the caret on getMember and using CreateImplementation will produce the following code:
const Member& MyClass::getMember( void )
{
}
This should be
const MyClass::Member& MyClass::getMember( void )
Regards, tv