24 lines
301 B
C++
24 lines
301 B
C++
/*
|
|
* 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_ */
|