Skip to content

Instantly share code, notes, and snippets.

@orbekk
Created June 16, 2011 20:49
Show Gist options
  • Save orbekk/1030240 to your computer and use it in GitHub Desktop.
Save orbekk/1030240 to your computer and use it in GitHub Desktop.
C++ ownership
class MyClass {
public:
// Takes ownership.
explicit MyClass(Dependency* dependency) : dependency(dependency) {}
private:
scoped_ptr<Dependency> dependency;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment