diff options
| author | 2018-10-10 21:23:41 -0400 | |
|---|---|---|
| committer | 2018-10-10 22:29:35 -0400 | |
| commit | 183a664405661fb531b82e2a0a3a8c6651a1ce8a (patch) | |
| tree | 6fab20b1cfbb116f5031de88efb809a541cbbcff /src/common | |
| parent | telemetry_json: Use the PImpl idiom to avoid unnecessary dependency exposure (diff) | |
| download | yuzu-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 'src/common')
| -rw-r--r-- | src/common/web_result.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/web_result.h b/src/common/web_result.h index 969926674..8bfa2141d 100644 --- a/src/common/web_result.h +++ b/src/common/web_result.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <string> | 7 | #include <string> |
| 8 | #include "common/common_types.h" | ||
| 8 | 9 | ||
| 9 | namespace Common { | 10 | namespace Common { |
| 10 | struct WebResult { | 11 | struct WebResult { |