Skip to content

Instantly share code, notes, and snippets.

@Pethaf
Created April 13, 2017 10:41
Show Gist options
  • Save Pethaf/70ccd59f5659eeffd5efb7d8995e688f to your computer and use it in GitHub Desktop.
Save Pethaf/70ccd59f5659eeffd5efb7d8995e688f to your computer and use it in GitHub Desktop.
Overrid
typedef vector<int> vint;
class Base
{
public:
virutal int score(const vint&) = 0;
};
class Derived
{
public:
virtual int score(const vint& diceRolls) override
{
//...
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment