| 101 | }; |
| 102 | |
| 103 | class QueueConnect : public QueueOperation { |
| 104 | public: |
| 105 | QueueConnect(HWND hNotify, int notifyCode = 0, void * notifyData = NULL); |
| 106 | virtual ~QueueConnect(); |
| 107 | |
| 108 | virtual int Perform(); |
| 109 | |
| 110 | virtual bool Equals(const QueueOperation & other); |
| 111 | }; |
| 112 | |
| 113 | class QueueDisconnect : public QueueOperation { |
| 114 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected