summaryrefslogtreecommitdiffstats
path: root/src/web_service/telemetry_json.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-08-24 03:09:34 +0200
committerbunnei <bunneidev@gmail.com>2017-08-26 05:10:02 +0200
commit04bd0c957e583a518121626deb029f214cc98cf6 (patch)
tree5fa503204b059f95add63b40494b359c51de3422 /src/web_service/telemetry_json.h
parentqt: Add an option to view/regenerate telemetry ID. (diff)
downloadyuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar.gz
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar.bz2
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar.lz
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar.xz
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.tar.zst
yuzu-04bd0c957e583a518121626deb029f214cc98cf6.zip
Diffstat (limited to 'src/web_service/telemetry_json.h')
-rw-r--r--src/web_service/telemetry_json.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/web_service/telemetry_json.h b/src/web_service/telemetry_json.h
index 39038b4f9..9e78c6803 100644
--- a/src/web_service/telemetry_json.h
+++ b/src/web_service/telemetry_json.h
@@ -17,7 +17,9 @@ namespace WebService {
*/
class TelemetryJson : public Telemetry::VisitorInterface {
public:
- TelemetryJson() = default;
+ TelemetryJson(const std::string& endpoint_url, const std::string& username,
+ const std::string& token)
+ : endpoint_url(endpoint_url), username(username), token(token) {}
~TelemetryJson() = default;
void Visit(const Telemetry::Field<bool>& field) override;
@@ -49,6 +51,9 @@ private:
nlohmann::json output;
std::array<nlohmann::json, 7> sections;
+ std::string endpoint_url;
+ std::string username;
+ std::string token;
};
} // namespace WebService