| 33 | struct tsBimEnum asBimEnums[]; |
| 34 | |
| 35 | CPsDecode::CPsDecode(CwindowBuf* pWBuf,CDocLog* pLog) |
| 36 | { |
| 37 | // Save copies of class pointers |
| 38 | m_pWBuf = pWBuf; |
| 39 | m_pLog = pLog; |
| 40 | |
| 41 | // Ideally this would be passed by constructor, but simply access |
| 42 | // directly for now. |
| 43 | CJPEGsnoopApp* pApp; |
| 44 | pApp = (CJPEGsnoopApp*)AfxGetApp(); |
| 45 | m_pAppConfig = pApp->m_pAppConfig; |
| 46 | |
| 47 | Reset(); |
| 48 | } |
| 49 | |
| 50 | void CPsDecode::Reset() |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected