1
0
Fork 0
SDEV-240-81/week-10/Test.cpp

25 lines
271 B
C++

//
// The test class
//
class Test
{
private:
float XXX;
float YYY;
public:
void function1()
{ XXX = 123.456; }
float function2()
{
YYY = 789.123;
return YYY;
}
float getFunction2()
{
return XXX;
}
};