Skip to content

Instantly share code, notes, and snippets.

@kalman5
Last active August 29, 2015 13:56
Show Gist options
  • Save kalman5/9031575 to your computer and use it in GitHub Desktop.
Save kalman5/9031575 to your computer and use it in GitHub Desktop.
Disable copy constructor and assignment operator
class NonCopyable {
public:
NonCopyable(const NonCopyable&) = delete;
NonCopyable& operator=(const NonCopyable&) = delete;
private:
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment