| 9 | namespace sfg { |
| 10 | |
| 11 | Scale::Scale( Orientation orientation ) : |
| 12 | Range( orientation ), |
| 13 | m_dragging( false ) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | Scale::Ptr Scale::Create( Orientation orientation ) { |
| 18 | Ptr ptr( new Scale( orientation ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected