terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 10 | #ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |
| 11 | #define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 13 | #include "rtc_tools/event_log_visualizer/plot_base.h" |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 14 | |
| 15 | namespace webrtc { |
| 16 | namespace plotting { |
| 17 | |
| 18 | class PythonPlot final : public Plot { |
| 19 | public: |
| 20 | PythonPlot(); |
| 21 | ~PythonPlot() override; |
terelius | dc35dcd | 2016-08-01 12:03:27 -0700 | [diff] [blame] | 22 | void Draw() override; |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | class PythonPlotCollection final : public PlotCollection { |
| 26 | public: |
| 27 | PythonPlotCollection(); |
| 28 | ~PythonPlotCollection() override; |
terelius | dc35dcd | 2016-08-01 12:03:27 -0700 | [diff] [blame] | 29 | void Draw() override; |
| 30 | Plot* AppendNewPlot() override; |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | } // namespace plotting |
| 34 | } // namespace webrtc |
| 35 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 36 | #endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ |