ChipMaster's trial hacks on C++CMS starting with v1.2.1. Not sure I'll follow on with the v2 since it looks to be breaking and mostly frivolous.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
306 B

  1. #ifndef CPPCMS_UTIL_NONCOPYABLE_H
  2. #define CPPCMS_UTIL_NONCOPYABLE_H
  3. namespace cppcms {
  4. namespace util {
  5. class noncopyable {
  6. private:
  7. noncopyable(noncopyable const &);
  8. noncopyable const &operator=(noncopyable const &);
  9. protected:
  10. noncopyable(){}
  11. ~noncopyable(){}
  12. };
  13. }} // cppcms::util
  14. #endif