The curiously recurring template pattern (CRTP) is a C++ idiom in which a class X derives from a class template instantiation using X itself as template argument.

learn more… | top users | synonyms

0
votes
1answer
41 views

Referencing struct definition inside class in CRTP

I'm using static polymorphism (CRTP method) to create class hierarchy. The idea is to use a struct defined in derived class in base one. However, VC10 generates following error: error C2039: ...
0
votes
1answer
42 views

CRTP inheriting from its default instantiation

I need to represent a hierarchy like this: template<typename T> struct X { }; template<typename Derived = void> struct Y : Y<void> { //Note: not trying to use SFINAE here ...
0
votes
0answers
38 views

multiple curiously recurring template pattern (CRTP) in c#?

Im trying to implement CRTP interface to my code, but the constraint make me stuck. how to implement the constraints if i have code structure look like this? Is this legal? Thank you. interface ...
3
votes
1answer
94 views

Why can't my Curiously Recurring Template Pattern (CRTP) refer to the derived class's typedefs? [duplicate]

When using the curiously recurring template pattern, I am unable to refer to typedefs belonging to the derived class only if I attempt to reference them from the base class; gcc complains no type ...
1
vote
2answers
78 views

How to define generic templated create function for subclass

I am working on cocos2dx game where for each subclass/scene I need to define something(macro) like this CREATECOCOS2DSCENE(CustomSceneNameScreen);` with following definition #define ...
1
vote
2answers
58 views

CRTP, forward declarations and templates in cpp files

I'm using the CRTP pattern to create an interface, which other classes will derive from. In the interface I forward declare a structure (important because I don't want to drag other stuff in the ...
1
vote
2answers
112 views

How to use CRTP with variadic templates?

Let's suppose originally I have the following design using CRTP: template<class Outputter> class Generator { protected: vector<int> v; private: void work(ostream& out) { ...
1
vote
3answers
95 views

Why does this code give the error, “template specialization requires 'template<>'”?

When I try to compile this with Clang template<class T> struct Field { char const *name; Field(char const *name) : name(name) { } }; template<class Derived> class CRTP { static ...
4
votes
1answer
95 views

CRTP and dynamic polymorphism compile error

class A { virtual A* foo() = 0; }; template<class T> class B : public A { virtual T* foo() { return nullptr; } }; class C : public B<C> { }; This is a simplified ...
8
votes
1answer
111 views

Using declaration for type-dependent template name

When CRTP is used inside a template, (or generally when a template parameter is passed as a base class template argument), is it impossible to name the base's member templates in a using declaration? ...
0
votes
0answers
27 views

Can this example of crtp be done in java?

Can the answer for this question What is the curiously recurring template pattern (CRTP)? be changed to work in java?
0
votes
1answer
90 views

Inheritance and CRTP

For practical reasons, I've got a class like template <class A> class CRTP { template <int (A::*Member)()> int func(void * obj) { int result // Do something ...
3
votes
3answers
259 views

Curiously Recurring Template Pattern (CRTP), AutoLists and C++

I am a little confused why there is so much "hate" on the Curiously Recurring Template Pattern (CRTP) design pattern, for example I was reading "Game Programming Gems 3", and there is a design in ...
0
votes
3answers
81 views

Override virtual function through CRTP base class

Old: How can I override a virtual function through a CRTP base class? struct I { virtual void foo() = 0; }; template<class D> struct B { void foo() { } }; // provides implementation of foo in ...
1
vote
2answers
132 views

Should this bit of C++ CRTP code compile, and if so what should it do?

I was thinking about using CRTP classes to help with overloading and wondered what the following bit of code would do: #include <iostream> #include <typeinfo> template <class ...
0
votes
2answers
189 views

How to use Curiously Recurring Template Pattern for Bridge Pattern?

I have been researching the Curiously Recurring Template Pattern to determine how I could use it to implement a Bridge Design Pattern. My problem is connecting, (wiring up), the ...
2
votes
3answers
211 views

CRTP Dispatch in C++11

Say I have the following code: template <class Derived> class Base { public: virtual void foo_impl() = 0; void foo() { static_cast<Derived*>(this)->foo_impl(); //A ...
2
votes
1answer
61 views

Use of member of derived type in CRTP class

I have a curiously recurring template pattern class and a derived class like so: template<class Derived> class A { typedef typename Derived::C D; D x; }; class B : public A<B> { ...
1
vote
1answer
96 views

Selecting which CRTP base class to derive from

Let's say that I have the following very simple CRTP base class: template< class D, class T > struct Base { T foo() { return static_cast< D* >(this)->foo_i(); ...
0
votes
0answers
53 views

CRTP and the assignment operator

I have some code that assigned to a CRTP class like this: IChunkWindow<WindowDerived, IChunk<ChunkDerived>> editWindow = chunkWindow.create( ...
0
votes
2answers
59 views

Can a class inherit from both an abstract class and a CRTP class?

Can a class inherit from both an abstract class and a CRTP class? Or if I inherit from a CRTP class must all classes I inherit from use CRTP?
0
votes
2answers
80 views

Why are CRTP impementation and interface methods named differently?

Everywhere I read about CRTP and indeed in the code I write, a CTRP class hierarchy looks something like the following: template< class T > class Base { public: int foo_interface() { ...
1
vote
0answers
105 views

Android NDK, CRTP and Factory design pattern

I'm trying to adopt the Curiously Recursive Pattern Template(CRTP) to implement a kind of Factory in my application. I started developing my version of CRTP following this nice post. Through CRTP ...
0
votes
0answers
84 views

How to efficiently generate RTTI

I'm trying to build an entity system. Each entity has a collection of components associated with it and each component is of a unique type. All components are derived from a base component class. I ...
1
vote
1answer
99 views

How to use using with CRTP?

When creating types with no additional features, I try to use using, rather than subclassing or using typedef. I have a CRTP hierarchy where I am trying to propagate the concrete type up the tree. ...
2
votes
3answers
116 views

Dealing with protected/private constructor/destructor for a CRTP design?

Consider the following code: #include <iostream> #include <type_traits> // Abstract base class template<class Crtp> class Base { // Lifecycle public: // MARKER 1 ...
10
votes
2answers
177 views

Clang and Intel fail to compile this CRTP code

I have written a small library that use a lot of C++11 metaprogramming techniques and CRTP, and it compiles well with g++ 4.7.2 Now, I try to compile it with Intel icpc 13.0.0.079 and it generates ...
1
vote
1answer
134 views

static casting from a base class to derived

There's something not clear to me i wish to put under your attention, please check those code snippets: template< typename DerivedClass > class construction_management { city* this_city; ...
0
votes
0answers
61 views

how to understand this syntax “ class Derived : public Base<Derived> ” in C++ template?

There is quite a lot of code like below: The template class: template <class T> class Singleton { private: static T* instance; public: // some functions }; and an ...
4
votes
2answers
110 views

Mixing typedef and CRTP?

Consider the following example: #include <iostream> #include <iostream> #include <type_traits> template<typename Type, template<typename> class Crtp> class Base { ...
2
votes
1answer
69 views

Usage of CRTP in a call chain

In my widget library I'd like to implement some kind of call chain to initialize a user supplied VIEW class which might(!) be derived from another class which adds some additional functionality like ...
8
votes
3answers
164 views

Possibility to mix composite pattern and curiously recurring template pattern

I have a composite pattern implementation, used for GUI components: class CObject { private: CObject * m_pParent; CObjectContainer * m_pChildren; void private_foo() { this->foo(); ...
3
votes
2answers
93 views

CRTP and default assignment operator

In the following : template<typename Derived> class Base: { inline Derived& operator=(const Base<Derived>& x); } Does this declaration erases the default copy assignment ...
2
votes
0answers
128 views

C++ Recurring Template pattern, including parent's nested template class

Please help, I need to unbundle a recurring dependency in the following (not actual, just illustrative) MSVC code from 2005. I'm compiling with g++ like this: g++ -std=c++x -I. -o -Wall -Wextra ...
0
votes
2answers
104 views

How to handle CRTP in a class hierarchy?

In one of my projects I'm using the same CRTP approach (deriving from enable_crtp) as in Answer 1 here: How do I pass template parameters to a CRTP? However I have the need to derive from the derived ...
2
votes
1answer
124 views

Curiously recurring template patterm: double inheritance

I have the following: class Base { protected: std::string _name; public: virtual ~Base(){} const std::string &name; Base() : _name ("(no name)") , name(_name) ...
1
vote
3answers
104 views

Static CRTP class without knowing derived type?

Given the following, working code. #include <iostream> template<class Detail> class AbstractLogger { public: static void log(const char* str) { Detail::log_detailled(str); ...
4
votes
1answer
175 views

C++ and CRTP pattern implementation and compiler dilemma

I'm trying to compile the following bit of code, however there seems to be an issue that I can't seem to resolve: template <int x> struct count_x { enum { x_size = x }; }; template ...
5
votes
3answers
142 views

c++ template code order parsing/CRTP

Can someone give a hint how does compiler process expressions such as class DerivedA: public ParentTemplateClass<DerivedA>{ } For mee it looks like: this boy's father is a "son" of this boy ...
1
vote
4answers
95 views

Refactoring to templates

I wanted to write some string wrappers that will accept a string if it is valid for their type: Length valid strings: mm, m, ft, in Angle valid strings: deg, rad I imagined a use like: Length ...
6
votes
1answer
119 views

C++ - circular dependence (using inner type of subclass in templated base class)

I run into problem with circular dependence in a templated class. There is a code sample: template <typename T> struct A { typedef typename T::C D; //typename T::C c; }; struct B : public ...
2
votes
2answers
193 views

Friend function with CRTP + enable_if is not working?

The following code does not compile and I don't know why: #include <type_traits> // Base class definition template<template<typename> class CRTP, typename T> class Base { // ...
0
votes
1answer
85 views

enable_if allowing base class only

I'm currently implementing some CRTP with a base class template<class CRTP> Base and derived classes Derived1 : public Base<Derived1>, Derived2 : public Base<Derived2>... The ...
6
votes
3answers
377 views

operator= and functions that are not inherited in C++?

Until a test I've just made, I believed that only Constructors were not inherited in C++. But apparently, the assignment operator= is not too... What is the reason of that ? Is there any ...
1
vote
1answer
107 views

CRTP : returning a reference to the derived class?

By what have I to replace the missing line to have this CRTP solution working ? template<class Crtp> class Base { public: inline Crtp& operator=(const Base<Crtp>& rhs) ...
0
votes
0answers
136 views

improving crtp error message when using same function name in base and derived classes

When using crtp is there a nice way to improve the error message (maybe using static_assert in some way) that the compiler generates when you have a member function with the same name in both the base ...
0
votes
1answer
70 views

Boost iterator_facade and forward declarations

I want to create a custom container that supports iterators. It looks like this: class SomeContainer { ... public: typedef SomeIterator iterator; iterator begin() { ... } iterator ...
1
vote
3answers
177 views

CRTP and template template?

I would like to do CRTP for template classes and I want the abstract base class to know about the template parameters of the derived classes. I tried this but it does not work : ...
4
votes
2answers
79 views

Why do I get an error when accessing a typedef in a derived class via CRTP?

I'm having trouble understanding why the code below doesn't compile -- could someone please explain? How do I access a typedef in a derived class from the base class? template<class Derived> ...
4
votes
1answer
225 views

CRTP + Traits class : “no type named…”

I try to implement a CRTP with templated class and I have an error with the following example code : #include <iostream> template<class T> class Traits { public: typedef ...

1 2 3 4