Skip to content

Instantly share code, notes, and snippets.

@elextr
Created November 8, 2014 04:02
Show Gist options
  • Save elextr/7bc925eb20197ee10c88 to your computer and use it in GitHub Desktop.
Save elextr/7bc925eb20197ee10c88 to your computer and use it in GitHub Desktop.
two classes
class a {
some_reference_to_a_class_b the_b;
/* more stuff */
void function_that_uses_the_b(){...};
}
class b {
some_reference_to_a_class_a the_a;
/* more stuff */
void function_that_uses_the_a(){...};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment