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