'Is there a trick to explicitly instantiate deep template classes?
I have a problem; I want to explicitly instantiate a class like Datatype in:
using Layout = some::namespaces::Meat_Layout<Some,Parameters>;
using Datatype = other::namespaces::Meta_Datatype<Layout>;
For explicit instantiation I need to use elaborated type specifiers. Which do not allow the usage of typedefs. Therefor I can not write:
template class Datatype;
But I have to write:
template class some::namespaces::Meta_Datatype<other::namespaces::Meat_Layout<Some,Parameters>>;
If there are any typedefs left in there I would have to replace them too, which might lead to something like:
template class some::namespaces::Meta_Datatype<other::namespaces::Meta_Meat_Layout<Some,Meta_Parameters<int>,int,int>>;
As you see this becomes really fast unclear.
Is there any trick to avoid the deconstruction of all the typedefs?
It would be best if it is also possible to use the trick when using extern template.
Solution 1:[1]
You don't have to deconstruct all typedefs. Those used as template parameters can be left as is:
using Layout = some::namespaces::Meat_Layout<Some,Parameters>;
using Datatype = other::namespaces::Meta_Datatype<Layout>;
template class other::namespaces::Meta_Datatype<Layout>;
Solution 2:[2]
Actually, you don't need to deconstruct all the typedefs. It's true that you cannot use typedef as explicitely instantiated template, but you can use typedefs as parameters of your template, like Evg said earlier.
As you already mentioned:
14.7.2 Explicit instantiation [temp.explicit]: If the explicit instantiation is for a class or member class, the
elaborated-type-specifierin the declaration shall include asimple-template-id.
But any limitations on template arguments are not mentioned in the standard, so you freely can use any arguments in the explicit instantiation, including the typedefs.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Evg |
| Solution 2 | Yuri Kovalenko |
