web_services: Refactor to remove dependency on Core.

This commit is contained in:
bunnei 2017-08-23 21:09:34 -04:00
parent 9f0da33c33
commit 04bd0c957e
5 changed files with 36 additions and 21 deletions

View file

@ -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