| 71 | } |
| 72 | |
| 73 | static list getFrameLists( CompoundFrameList &x ) |
| 74 | { |
| 75 | const std::vector<FrameListPtr> &frameLists = x.getFrameLists(); |
| 76 | |
| 77 | list result; |
| 78 | |
| 79 | for ( std::vector<FrameListPtr>::const_iterator it = frameLists.begin(); it != frameLists.end(); ++it ) |
| 80 | { |
| 81 | result.append( *it ); |
| 82 | } |
| 83 | |
| 84 | return result; |
| 85 | } |
| 86 | |
| 87 | static void setFrameLists( CompoundFrameList &x, list l ) |
| 88 | { |