| 51 | |
| 52 | template<> |
| 53 | std::string repr( ExclusionFrameList &x ) |
| 54 | { |
| 55 | std::stringstream s; |
| 56 | |
| 57 | s << "IECore.ExclusionFrameList( "; |
| 58 | |
| 59 | object item( FrameListPtr( x.getFrameList() ) ); |
| 60 | |
| 61 | s << call_method< std::string >( item.ptr(), "__repr__" ); |
| 62 | |
| 63 | s << ", "; |
| 64 | |
| 65 | item = object( x.getExclusionFrameList() ); |
| 66 | |
| 67 | s << call_method< std::string >( item.ptr(), "__repr__" ); |
| 68 | |
| 69 | s << " ) "; |
| 70 | |
| 71 | return s.str(); |
| 72 | } |
| 73 | |
| 74 | void bindExclusionFrameList() |
| 75 | { |
nothing calls this directly
no test coverage detected