#include "test.h" #include using namespace std; int main() { test t( 3 ); cout << t.getval() << endl; t.setval( 5 ); cout << t.getval() << endl; return 0; }