| 110 | return true; |
| 111 | } |
| 112 | void Module::setIsTraining(const bool isTraining) { |
| 113 | mIsTraining = isTraining; |
| 114 | for (auto c : mChildren) { |
| 115 | c->setIsTraining(isTraining); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | bool Module::getIsTraining() { |
| 120 | return mIsTraining; |
no outgoing calls
no test coverage detected