| 22 | #include <commctrl.h> |
| 23 | |
| 24 | QueueWindow::QueueWindow() : |
| 25 | Window(NULL, WC_LISTVIEW) |
| 26 | { |
| 27 | m_style = WS_CHILD | LVS_REPORT | LVS_NOSORTHEADER | LVS_SINGLESEL; |
| 28 | m_exStyle = WS_EX_CLIENTEDGE; |
| 29 | } |
| 30 | |
| 31 | QueueWindow::~QueueWindow() { |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected