| 15 | } |
| 16 | |
| 17 | Scale::Ptr Scale::Create( Orientation orientation ) { |
| 18 | Ptr ptr( new Scale( orientation ) ); |
| 19 | ptr->SetAdjustment( Adjustment::Create() ); |
| 20 | return ptr; |
| 21 | } |
| 22 | |
| 23 | Scale::Ptr Scale::Create( float min, float max, float step, Orientation orientation ) { |
| 24 | Ptr ptr( new Scale( orientation ) ); |
nothing calls this directly
no test coverage detected