Skip to content

Instantly share code, notes, and snippets.

@rscarvalho
Created April 21, 2010 13:18
Show Gist options
  • Save rscarvalho/373795 to your computer and use it in GitHub Desktop.
Save rscarvalho/373795 to your computer and use it in GitHub Desktop.
UmaClasse::UmaClasse(int x, int y)
: _x(x), _y(y){
// ...
}
// is the same of
UmaClasse::UmaClasse(int x, int y)
{
_x = x;
_y = y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment