1// To compile this type: 2// 3// g++ -shared -g -Wall -o libtest0-common.so test0-common.cc 4 5#include "test0.h" 6 7S::S() 8 :m0(0), m1(0), m2(0) 9{} 10 11int 12S::get_m0() const 13{return m0;} 14 15char 16S::get_m1() const 17{return m1;} 18