27 lines
380 B
C++
27 lines
380 B
C++
/*
|
|
* TestClass.cpp
|
|
*
|
|
* Created on: Oct 25, 2024
|
|
* Author: ahypki
|
|
*/
|
|
|
|
#include "TestClass.h"
|
|
|
|
TestClass::TestClass() {
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
TestClass::~TestClass() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
|
|
int TestClass::getTestValue() {
|
|
return testValue;
|
|
}
|
|
|
|
void TestClass::setTestValue(int testValue = 0) {
|
|
this->testValue = testValue;
|
|
}
|