Skip to content

Instantly share code, notes, and snippets.

@besquared
Created April 9, 2009 20:39
Show Gist options
  • Select an option

  • Save besquared/92721 to your computer and use it in GitHub Desktop.

Select an option

Save besquared/92721 to your computer and use it in GitHub Desktop.
class MyClass {
obj *parent;
MyClass(obj &parent) {
this->parent = parent;
}
~MyClass() {
delete parent;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment