See version :
Pas de dépendances
Download :
#include <boost/utility.hpp> class Test:public boost::noncopyable { protected: int a; public: Test(){a=2;} }; int main() { Test t; Test t2 = t; return 0; }
No explanations yet.