1 
2 class Foo : public Bar
3 {
4 
5 };
6 
7 #define CTOR(i, _) : T(X()), \
8                      y() \
9 { }
10 
11 class Foo2 :
12    public Bar
13 {
14 
15 };
16 
17 class GLOX_API ClientBase : public Class, public OtherClass,
18                             public ThridClass, public ForthClass
19 {
20 public:
ClientBase(const ClientBase & f)21 ClientBase(const ClientBase & f){
22    // do something
23 }
24 };
25 
ClientBase(const std::string & ns,const std::string & ns1,const std::string & ns2)26 ClientBase::ClientBase (const std::string& ns,
27                         const std::string& ns1,
28                         const std::string& ns2)
29 {
30 
31 }
32 
Foo(int bar)33 Foo::Foo(int bar) : someVar(bar), othervar(0)
34 {
35 }
36 
Foo(int bar)37 Foo::Foo(int bar) : someVar(bar),
38                     othervar(0)
39 {
40 }
41 
Foo(int bar)42 Foo::Foo(int bar) :
43    someVar(bar), othervar(0)
44 {
45 }
46 
Foo(int bar)47 Foo::Foo(int bar) :
48    someVar(bar), othervar(0)
49 {
50 }
51 
Foo(int bar)52 Foo::Foo(int bar) :
53    someVar(bar),
54    othervar(0)
55 {
56 }
57 
Foo(int bar)58 Foo::Foo(int bar) :
59    someVar(bar),
60    othervar(0)
61 {
62 }
63