Skip to content

Instantly share code, notes, and snippets.

@simonask
Created March 7, 2009 17:52
Show Gist options
  • Save simonask/75396 to your computer and use it in GitHub Desktop.
Save simonask/75396 to your computer and use it in GitHub Desktop.
class Base {
private:
int m_Lol;
public:
Base(int lol) : m_Lol(lol) {}
};
class Foo : public Base {
public:
Foo() : Base(123) {}
Foo(int yay) : Base(yay) {}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment