| 1062 | } |
| 1063 | |
| 1064 | bool AUPImportFileHandle::HandleControlPoint(XMLTagHandler *&handler) |
| 1065 | { |
| 1066 | struct node node = mHandlers.back(); |
| 1067 | |
| 1068 | if (mParentTag == "envelope") |
| 1069 | { |
| 1070 | // If an imported timetrack was bypassed, then we want to bypass the |
| 1071 | // control points as well. (See HandleTimeTrack and HandleEnvelope) |
| 1072 | if (node.handler) |
| 1073 | { |
| 1074 | Envelope *envelope = static_cast<Envelope *>(node.handler); |
| 1075 | |
| 1076 | handler = envelope->HandleXMLChild(mCurrentTag); |
| 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | return true; |
| 1081 | } |
| 1082 | |
| 1083 | bool AUPImportFileHandle::HandleSequence(XMLTagHandler *&handler) |
| 1084 | { |
nothing calls this directly
no test coverage detected