1 #include "base.h" 2 FooBase()3 FooBase::FooBase() : x(12345) {} Foo2Base()4 ns::Foo2Base::Foo2Base() : x(23456) {} 5 bar()6 void FooBase::bar() {} bar()7 void ns::Foo2Base::bar() {} 8