Possible Duplicate:
What are the advantages of boost::noncopyable
Why there is boost::noncopyable
, I understand this gives a feature that no copy can be make for the class which is child of boost::noncopyable
, but this can be easily done having private copy constructor and assignment operator
What is the need to haveing separate class and inheriting it to your class.