| 12 | } |
| 13 | |
| 14 | ProgressBar::Ptr ProgressBar::Create( Orientation orientation ) { |
| 15 | return Ptr( new ProgressBar( orientation ) ); |
| 16 | } |
| 17 | |
| 18 | void ProgressBar::SetFraction( float fraction ) { |
| 19 | m_fraction = std::max( 0.f, std::min( 1.f, fraction ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected