// Copyright 2016 Google Inc. All Rights Reserved. #ifndef WVCDM_METRICS_REPORT_H_ #define WVCDM_METRICS_REPORT_H_ #include #include "event_metric.h" namespace wvcdm { namespace metrics { class Report : public MetricNotification { public: virtual ~Report() { } /* Create a new report of the same type. The new report is not * a copy of this report. The pointer is to be owned by whoever * calls this function. */ virtual Report* NewReport() const; }; } // metrics } //wvcdm #endif