There is this code:
#include class Base { public: Base(){ std::cout << \"Constructor base\" << std::endl; }
You can also use "using":
class Derived : public Base{ public: using Base::operator=; };
http://en.cppreference.com/w/cpp/language/using_declaration
I read this post several time before someone helped me with this.