Skip to content

Instantly share code, notes, and snippets.

@smart-lemon
Created November 8, 2017 17:35
Show Gist options
  • Save smart-lemon/8f20e639ef6a8446454080cc8fc4427c to your computer and use it in GitHub Desktop.
Save smart-lemon/8f20e639ef6a8446454080cc8fc4427c to your computer and use it in GitHub Desktop.
class Cat : public Animal {
public :
Cat(){
setSound("Meow...");
}
void throwThingsOffTheTable() {
cout << "Sounds of plates crashing!" << endl;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment