/////////////////////////////////////////////////////////////// Method: OnPaint Class: CCamView Purose: on paint event Input: reference to paint event Output: nothing ///////////////////////////////////////////////////////////////
| 95 | // Output: nothing |
| 96 | //////////////////////////////////////////////////////////////////// |
| 97 | void CCamView::OnPaint( wxPaintEvent& event ) |
| 98 | { |
| 99 | wxPaintDC dc(this); |
| 100 | Draw( dc ); |
| 101 | } |
| 102 | |
| 103 | //////////////////////////////////////////////////////////////////// |
| 104 | // Method: Draw |
nothing calls this directly
no outgoing calls
no test coverage detected