I have just come across this keyword C++ Mixin-Style, do anyone know what this is?
C++ Mixin-Style
In this post, is has been answered as a design pattern. Is it the sam
Usually mixins are referred to as small classes (often templated or crtp based) that you derive from to "mix in" some functionality; usually via multiple inheritance and in policy based designs (also see "Modern C++ Design" by Alexandrescu).