Is there a way to make the default copy constructor private? I want to do this:
   private: MyClass(MyClass const &);
but I don't want to have to define this function: I was the compiler to do it. Is this possible?

rh

Reply via email to