- Oct 28, 2018
-
-
fearlessTobi authored
-
- Oct 11, 2018
-
-
Lioncash authored
Like with TelemetryJson, we can make the implementation details private and avoid the need to expose httplib to external libraries that need to use the Client class.
-
Lioncash authored
Users of the web_service library shouldn't need to care about an external library like json.h. However, given it's exposed in our interface, this requires that other libraries publicly link in the JSON library. We can do better. By using the PImpl idiom, we can hide this dependency in the cpp file and remove the need to link that library in altogether.
-
Lioncash authored
Taking them by const reference isn't advisable here, because it means the std::move calls were doing nothing and we were always copying the std::string instances.
-
Lioncash authored
Removes unused includes. Also rectifies a missing <chrono> include.
-
- Oct 02, 2018
-
-
fearlessTobi authored
-
fearlessTobi authored
-
- Jan 13, 2018
-
-
James Rowe authored
-
- Aug 26, 2017
-
-
bunnei authored
-
- Jul 11, 2017
- Jul 10, 2017
-
-
bunnei authored
-