views:

191

answers:

1

What is the name of that kind of structure? Or where can I read about that.

class A : public B < A > { ... }
+9  A: 

Check out the Curiously recurring template pattern.

TC