Skip to content

Instantly share code, notes, and snippets.

@menyf
Created October 18, 2018 01:45
Show Gist options
  • Save menyf/a475fe14891ed77c20e26de2d7eaf96b to your computer and use it in GitHub Desktop.
Save menyf/a475fe14891ed77c20e26de2d7eaf96b to your computer and use it in GitHub Desktop.
class Animal{
public:
virtual Animal * getFather() {}
virtual Animal * getMother() {}
};
class Cat: public Animal {
public:
virtual Cat * getFather(){}
virtual Cat * getMother(){}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment