Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 25, 2020 18:48
Show Gist options
  • Save domiyanyue/a7d7f4a8e9c0ad060cda831692c4fddc to your computer and use it in GitHub Desktop.
Save domiyanyue/a7d7f4a8e9c0ad060cda831692c4fddc to your computer and use it in GitHub Desktop.
class example for declaration
class House;
class Owner;
class House{
public:
Owner* my_owner;
House(Owner* owner){
my_owner = owner;
}
~House(){}
};
class Owner{
public:
House* my_house;
Owner(House* house){
my_house = house;
}
~Owner(){}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment