| 136 | } |
| 137 | |
| 138 | void ExternalProcedural::memoryUsage( Object::MemoryAccumulator &a ) const |
| 139 | { |
| 140 | VisibleRenderable::memoryUsage( a ); |
| 141 | a.accumulate( m_fileName.capacity() ); |
| 142 | a.accumulate( sizeof( m_bound ) ); |
| 143 | a.accumulate( m_parameters.get() ); |
| 144 | } |
| 145 | |
| 146 | void ExternalProcedural::hash( MurmurHash &h ) const |
| 147 | { |
nothing calls this directly
no test coverage detected