Код: Выделить всё
#include
struct slow_tag {};
struct fast_tag {};
template
struct traits
{
typedef slow_tag tag;
};
template
struct traits
{
typedef fast_tag tag;
};
template
void work_dispatch(const slow_tag)
{
std::cout
Подробнее здесь: [url]https://stackoverflow.com/questions/32522279/tag-dispatching-example-in-c[/url]
Мобильная версия