Raw File
foo.cpp
class Foo
{
public:
  void bar() {}
};

void baz()
{
  Foo foo;
  foo.bar();
}
back to top