What's the proper way to inherit from a template class with the template argument being a nested class within the inheriting class?
class SomeClass : public TemplateClass<NestedClass>
{
class NestedClass {};
};
|
What's the proper way to inherit from a template class with the template argument being a nested class within the inheriting class?
|
||||
|
|
|
There's no way to do specifically that. If you really have to inherit from |
|||
|
|
I can't see how you could do this properly. There is this:
but that's just faking it... |
|||
|
|
|
You must atleast forward declare the NestedClass:
This works. Tested on MinGW c++ on windows. Update: @jon I tried the following on with gcc version 3.4.5 on Windows XP:
And, I get the following output: 10 100 But, I guess what the author intended (like @jon suggested) is actually this:
And this does not work. The reason being that to be able to declare SomeClass::NestedClass in the template specification, SomeClass should have been declared. But, we are trying to do exactly that - hence we get a cyclic dependency. So I guess @jon's answer best solves this problem. |
|||||
|