| 660 | ThreadSafeApi::ThreadSafeApi() : apiVersion(-1), transportId(0) {} |
| 661 | |
| 662 | void ThreadSafeApi::selectApiVersion(int apiVersion) { |
| 663 | this->apiVersion = ApiVersion(apiVersion); |
| 664 | } |
| 665 | |
| 666 | const char* ThreadSafeApi::getClientVersion() { |
| 667 | // There is only one copy of the ThreadSafeAPI, and it never gets deleted. |
no outgoing calls
no test coverage detected