#include "class.h"

TestClass::TestClass() {

	x = 0;

}

TestClass::~TestClass() {}

void TestClass::set_x(int n) {
	
	x = n;
	
}

int TestClass::get_x() {
	
	return x;
	
}