You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
217 B
18 lines
217 B
4 months ago
|
// To compile this type:
|
||
|
//
|
||
|
// g++ -shared -g -Wall -o libtest0-common.so test0-common.cc
|
||
|
|
||
|
#include "test0.h"
|
||
|
|
||
|
S::S()
|
||
|
:m0(0), m1(0), m2(0)
|
||
|
{}
|
||
|
|
||
|
int
|
||
|
S::get_m0() const
|
||
|
{return m0;}
|
||
|
|
||
|
char
|
||
|
S::get_m1() const
|
||
|
{return m1;}
|