Synopsis - Cross-Reference

File: /sandbox/bpl/functions.cc
 1class Foo
 2{
 3public:
 4  Foo() { init();}
 5private:
 6  void init();
 7};
 8
 9void Foo::init()
10{
11
12}
13
14Foo *bar()
15{
16  return new Foo();
17}