| 107 | } |
| 108 | |
| 109 | bool GetUint64(istringstream & lineStream, uint64_t & result) |
| 110 | { |
| 111 | string strResult; |
| 112 | if (!GetString(lineStream, strResult)) |
| 113 | return false; |
| 114 | return strings::to_uint64(strResult, result); |
| 115 | } |
| 116 | |
| 117 | bool GetGpsPoint(istringstream & lineStream, uint64_t & timestampS, double & lat, double & lon) |
| 118 | { |
no test coverage detected