| 40 | void setEnum(NetSessionEnum* _en); |
| 41 | |
| 42 | NetSessionEnum::NetSessionEnum() : LockInit(_cs, "NetSessionEnum::_cs", true) |
| 43 | { |
| 44 | _running = false; |
| 45 | magicApp = 0; |
| 46 | setEnum(this); |
| 47 | #ifdef NET_LOG_SESSION_ENUM |
| 48 | NetLog("Peer(%u): creating NetSessionEnum instance", NetTpInternal::getClientPeer()->getPeerId()); |
| 49 | #endif |
| 50 | } |
| 51 | |
| 52 | NetSessionEnum::~NetSessionEnum() |
| 53 | { |
nothing calls this directly
no test coverage detected