openMSX
noncopyable.hh
Go to the documentation of this file.
1 #ifndef NONCOPYABLE_HH
2 #define NONCOPYABLE_HH
3 
13 {
14 protected:
17 private:
18  noncopyable(const noncopyable&);
19  const noncopyable& operator=(const noncopyable&);
20 };
21 
22 #endif
Based on boost::noncopyable, see boost documentation: http://www.boost.org/libs/utility.
Definition: noncopyable.hh:12