Skip to content

Instantly share code, notes, and snippets.

@badboy
Created January 10, 2009 19:53
Show Gist options
  • Save badboy/45545 to your computer and use it in GitHub Desktop.
Save badboy/45545 to your computer and use it in GitHub Desktop.
class MenuEntry
{
public:
MenuEntry(std::string n): name(n) { }
std::string name;
};
class Settings : public MenuEntry
{
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment