18 lines
184 B
C++
18 lines
184 B
C++
|
|
#include "test.h"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
test t( 3 );
|
|
cout << t.getval() << endl;
|
|
|
|
t.setval( 5 );
|
|
cout << t.getval() << endl;
|
|
|
|
return 0;
|
|
}
|
|
|