| 70 | IJsonHandler* JsonHandler::parent() { return this->_pParent; } |
| 71 | |
| 72 | IJsonHandler* JsonHandler::ignoreAndReturnToParent() { |
| 73 | this->_ignore.reset(this->parent()); |
| 74 | return &this->_ignore; |
| 75 | } |
| 76 | |
| 77 | IJsonHandler* JsonHandler::ignoreAndContinue() { |
| 78 | this->_ignore.reset(this); |
no test coverage detected