| 28 | { |
| 29 | |
| 30 | Base :: Base(const Config * poConfig, const MsgTransport * poMsgTransport, const Instance * poInstance) |
| 31 | { |
| 32 | m_poConfig = (Config *)poConfig; |
| 33 | m_poMsgTransport = (MsgTransport *)poMsgTransport; |
| 34 | m_poInstance = (Instance *)poInstance; |
| 35 | |
| 36 | m_llInstanceID = 0; |
| 37 | |
| 38 | m_bIsTestMode = false; |
| 39 | } |
| 40 | |
| 41 | Base :: ~Base() |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected