/*
 * TestClass.h
 *
 *  Created on: Oct 25, 2024
 *      Author: ahypki
 */

#ifndef TESTCLASS_H_
#define TESTCLASS_H_

class TestClass {
private:
	int testValue = 0;

public:
	TestClass();
	virtual ~TestClass();
	int getTestValue();

	void setTestValue(int testValue);
};

#endif /* TESTCLASS_H_ */