| 79 | } |
| 80 | |
| 81 | void CoordinateSystem::memoryUsage( Object::MemoryAccumulator &a ) const |
| 82 | { |
| 83 | Renderable::memoryUsage( a ); |
| 84 | a.accumulate( m_name.capacity() + sizeof( m_name ) ); |
| 85 | } |
| 86 | |
| 87 | void CoordinateSystem::copyFrom( const Object *other, CopyContext *context ) |
| 88 | { |
nothing calls this directly
no test coverage detected