| 11 | Signal::SignalID Window::OnCloseButton = 0; |
| 12 | |
| 13 | Window::Window( char style ) : |
| 14 | m_style( style ), |
| 15 | m_dragging( false ), |
| 16 | m_resizing( false ) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | Window::Ptr Window::Create( char style ) { |
| 21 | Window::Ptr window( new Window( style ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected