Hello!
The base class has a protected state machine. Is it possible to somehow link this machine to an machine of the current class?
For example:
Code:
startTest->addTransition(FillingGas::machine, SIGNAL(finished()), alignment);
Printable View
Hello!
The base class has a protected state machine. Is it possible to somehow link this machine to an machine of the current class?
For example:
Code:
startTest->addTransition(FillingGas::machine, SIGNAL(finished()), alignment);
If the "current class" is derived from the "base class", then the "current class" has access to public and protected (but not private) members of the base class. Your single line of pretty abstract code doesn't do much to explain the problem you are having (if you're having any problem at all).