Oops. Soory about the bad code. Here is a snipit that I actually tried!!!
#define DCLASS class
DCLASS MyBaseClass
{
public:
void Test( );
};
DCLASS MyClass : public MyBaseClass
{
public:
void foo(bool b);
};
main()
{
MyClass a;
a.foo(false);
a.Test();
}
Again, if I move the cursor to the foo() method in main(), the Goto Implementation does not work. The definition list box shows 'MyClass a' instead of the function declaration. An when I execure the goto it simply brings me to the beginning of the line.
Regards,