| 55 | |
| 56 | |
| 57 | Client::Client(TextService* service, REFIID langProfileGuid): |
| 58 | textService_(service), |
| 59 | pipe_(INVALID_HANDLE_VALUE), |
| 60 | nextSeqNum_(0), |
| 61 | isActivated_(false), |
| 62 | guid_{uuidToString(langProfileGuid)}, |
| 63 | shouldWaitConnection_{true} { |
| 64 | } |
| 65 | |
| 66 | Client::~Client(void) { |
| 67 | closeRpcConnection(); |
nothing calls this directly
no test coverage detected