Skip to content

Instantly share code, notes, and snippets.

@carmel4a
Last active August 28, 2018 22:56
Show Gist options
  • Save carmel4a/72060a895902f4d23123edb2533d131b to your computer and use it in GitHub Desktop.
Save carmel4a/72060a895902f4d23123edb2533d131b to your computer and use it in GitHub Desktop.
class Button
{
Button();
virtual ~Button();
virtual void Pressed() =0;
}
class SomeButton : public Button
{
SomeButton();
virtual ~SomeButton();
virtual void Pressed() override
{
// implementation
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment