| 14 | } |
| 15 | |
| 16 | Box::Ptr Box::Create( Orientation orientation, float spacing ) { |
| 17 | return Ptr( new Box( orientation, spacing ) ); |
| 18 | } |
| 19 | |
| 20 | const std::string& Box::GetName() const { |
| 21 | static const std::string name( "Box" ); |
nothing calls this directly
no outgoing calls
no test coverage detected