Ejemplo n.º 1
0
int DoBar(Foo foo) {
  return foo.GetFoo();
}
Ejemplo n.º 2
0
void DoBar (Foo foo)
{
    cout << "inside DoBar " << endl;
    int i = foo.GetFoo ();
}