summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/telemetry_session.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h
index 8229d1333..7d0c8d413 100644
--- a/src/core/telemetry_session.h
+++ b/src/core/telemetry_session.h
@@ -14,11 +14,17 @@ namespace Core {
14 * session, logging any one-time fields. Interfaces with the telemetry backend used for submitting 14 * session, logging any one-time fields. Interfaces with the telemetry backend used for submitting
15 * data to the web service. Submits session data on close. 15 * data to the web service. Submits session data on close.
16 */ 16 */
17class TelemetrySession : NonCopyable { 17class TelemetrySession {
18public: 18public:
19 TelemetrySession(); 19 TelemetrySession();
20 ~TelemetrySession(); 20 ~TelemetrySession();
21 21
22 TelemetrySession(const TelemetrySession&) = delete;
23 TelemetrySession& operator=(const TelemetrySession&) = delete;
24
25 TelemetrySession(TelemetrySession&&) = delete;
26 TelemetrySession& operator=(TelemetrySession&&) = delete;
27
22 /** 28 /**
23 * Wrapper around the Telemetry::FieldCollection::AddField method. 29 * Wrapper around the Telemetry::FieldCollection::AddField method.
24 * @param type Type of the field to add. 30 * @param type Type of the field to add.