| 51 | |
| 52 | template<> |
| 53 | std::string repr( BinaryFrameList &x ) |
| 54 | { |
| 55 | object item( FrameListPtr( x.getFrameList() ) ); |
| 56 | std::stringstream s; |
| 57 | |
| 58 | s << "IECore.BinaryFrameList( "; |
| 59 | s << call_method< std::string >( item.ptr(), "__repr__" ); |
| 60 | s << " ) "; |
| 61 | |
| 62 | return s.str(); |
| 63 | } |
| 64 | |
| 65 | void bindBinaryFrameList() |
| 66 | { |
nothing calls this directly
no test coverage detected