C++ (Qt)struct Base { void Method1( void ) {}}; template <class T>struct Derived : public T { void Method2( void ) { Method1(); // ошибка (undefined Method1 и.т.п.) }};
C++ (Qt)T::Method1();
C++ (Qt)template <class T>struct Derived : public T { void Method2( void ) { this->Method1(); // ошибка (undefined Method1 и.т.п.) }};