I have a Visual Studio 2008 C ++ application where a base class A_Baseneeds to create an instance of a data item whose type is determined by the parent class. For instance:
template< typename T >
class A_Base
{
public:
typedef typename T::Foo Bar;
private:
Bar bar_;
};
class A : public A_Base< A >
{
public:
typedef int Foo;
};
int _tmain( int argc, _TCHAR* argv[] )
{
A a;
return 0;
}
Unfortunately, it seems that the compiler does not know that T::Foountil it is too late, and I get errors like this:
1>MyApp.cpp(10) : error C2039: 'Foo' : is not a member of 'A'
1> MyApp.cpp(13) : see declaration of 'A'
1> MyApp.cpp(14) : see reference to class template instantiation 'A_Base<T>' being compiled
1> with
1> [
1> T=A
1> ]
1>MyApp.cpp(10) : error C2146: syntax error : missing ';' before identifier 'Bar'
1>MyApp.cpp(10) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>MyApp.cpp(10) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Is there a way to achieve this type of functionality?
Thanks PaulH
source
share