| 412 | } |
| 413 | |
| 414 | void CtrlrProcessor::setStateInformation (const void* data, int sizeInBytes) |
| 415 | { |
| 416 | _DBG("CtrlrProcessor::setStateInformation"); |
| 417 | ScopedPointer<XmlElement> xmlState (getXmlFromBinary (data, sizeInBytes)); |
| 418 | if (xmlState) |
| 419 | { |
| 420 | setStateInformation (xmlState); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | void CtrlrProcessor::setStateInformation (const XmlElement *xmlState) |
| 425 | { |
no test coverage detected