blob: 2bf445a43e7c278bc77630ee522588d202fd1584 [file] [log] [blame]
terelius54ce6802016-07-13 06:44:41 -07001/*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10#ifndef WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
11#define WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
12
13#include "webrtc/tools/event_log_visualizer/plot_base.h"
14
15namespace webrtc {
16namespace plotting {
17
18class PythonPlot final : public Plot {
19 public:
20 PythonPlot();
21 ~PythonPlot() override;
tereliusdc35dcd2016-08-01 12:03:27 -070022 void Draw() override;
terelius54ce6802016-07-13 06:44:41 -070023};
24
25class PythonPlotCollection final : public PlotCollection {
26 public:
27 PythonPlotCollection();
28 ~PythonPlotCollection() override;
tereliusdc35dcd2016-08-01 12:03:27 -070029 void Draw() override;
30 Plot* AppendNewPlot() override;
terelius54ce6802016-07-13 06:44:41 -070031};
32
33} // namespace plotting
34} // namespace webrtc
35
36#endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_