#include "test1.h"
#include <stdio.h>

test1::test1() {
	t = 1;
}

void test1::setT(float t) {
	this->t = t;
}

float test1::getT() {
	return t;
}

float* test1::getAdressT() {
	printf("%p\n", &t);
	return &t;
}