summaryrefslogtreecommitdiff
path: root/src/web_service/telemetry_json.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-10-10 21:23:41 -0400
committerGravatar Lioncash2018-10-10 22:29:35 -0400
commit183a664405661fb531b82e2a0a3a8c6651a1ce8a (patch)
tree6fab20b1cfbb116f5031de88efb809a541cbbcff /src/web_service/telemetry_json.cpp
parenttelemetry_json: Use the PImpl idiom to avoid unnecessary dependency exposure (diff)
downloadyuzu-183a664405661fb531b82e2a0a3a8c6651a1ce8a.tar.gz
yuzu-183a664405661fb531b82e2a0a3a8c6651a1ce8a.tar.xz
yuzu-183a664405661fb531b82e2a0a3a8c6651a1ce8a.zip
web_backend: Make Client use the PImpl idiom
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.
Diffstat (limited to '')
-rw-r--r--src/web_service/telemetry_json.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp
index 3c5590054..0a8f2bd9e 100644
--- a/src/web_service/telemetry_json.cpp
+++ b/src/web_service/telemetry_json.cpp
@@ -4,6 +4,7 @@
4 4
5#include <json.hpp> 5#include <json.hpp>
6#include "common/detached_tasks.h" 6#include "common/detached_tasks.h"
7#include "common/web_result.h"
7#include "web_service/telemetry_json.h" 8#include "web_service/telemetry_json.h"
8#include "web_service/web_backend.h" 9#include "web_service/web_backend.h"
9 10