| 8 | namespace sfg { |
| 9 | |
| 10 | Box::Box( Orientation orientation, float spacing ) : |
| 11 | m_spacing( spacing ), |
| 12 | m_orientation( orientation ) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | Box::Ptr Box::Create( Orientation orientation, float spacing ) { |
| 17 | return Ptr( new Box( orientation, spacing ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected