| 6 | namespace sfg { |
| 7 | |
| 8 | ProgressBar::ProgressBar( Orientation orientation ) : |
| 9 | m_fraction( 0.f ), |
| 10 | m_orientation( orientation ) |
| 11 | { |
| 12 | } |
| 13 | |
| 14 | ProgressBar::Ptr ProgressBar::Create( Orientation orientation ) { |
| 15 | return Ptr( new ProgressBar( orientation ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected