Created
November 8, 2014 04:02
-
-
Save elextr/7bc925eb20197ee10c88 to your computer and use it in GitHub Desktop.
two classes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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