qwt_gazebo.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2016 Open Source Robotics Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16*/
17
18#ifndef GAZEBO_GUI_PLOT_QWT_GAZEBO_H_
19#define GAZEBO_GUI_PLOT_QWT_GAZEBO_H_
20
21#pragma GCC system_header
22
23#pragma clang diagnostic push
24#pragma clang diagnostic ignored "-Wfloat-equal"
25
26#if defined __has_include
27 #if __has_include (<qwt.h>)
28 #include <qwt_curve_fitter.h>
29 #include <qwt_global.h>
30 #include <qwt_legend.h>
31 #include <qwt_painter.h>
32 #include <qwt_picker_machine.h>
33 #include <qwt_plot.h>
34 #include <qwt_plot_canvas.h>
35 #include <qwt_plot_curve.h>
36 #include <qwt_plot_directpainter.h>
37 #include <qwt_plot_grid.h>
38 #include <qwt_plot_layout.h>
39 #include <qwt_plot_magnifier.h>
40 #include <qwt_plot_marker.h>
41 #include <qwt_plot_panner.h>
42 #include <qwt_plot_zoomer.h>
43 #include <qwt_scale_engine.h>
44 #include <qwt_scale_map.h>
45 #include <qwt_scale_widget.h>
46 #include <qwt_symbol.h>
47 #include <qwt_plot_renderer.h>
48 #define GAZEBO_GUI_QWT_IS_INCLUDED
49 #endif
50#endif
51
52#ifndef GAZEBO_GUI_QWT_IS_INCLUDED
53 #include <qwt/qwt_curve_fitter.h>
54 #include <qwt/qwt_global.h>
55 #include <qwt/qwt_legend.h>
56 #include <qwt/qwt_painter.h>
57 #include <qwt/qwt_picker_machine.h>
58 #include <qwt/qwt_plot.h>
59 #include <qwt/qwt_plot_canvas.h>
60 #include <qwt/qwt_plot_curve.h>
61 #include <qwt/qwt_plot_directpainter.h>
62 #include <qwt/qwt_plot_grid.h>
63 #include <qwt/qwt_plot_layout.h>
64 #include <qwt/qwt_plot_magnifier.h>
65 #include <qwt/qwt_plot_marker.h>
66 #include <qwt/qwt_plot_panner.h>
67 #include <qwt/qwt_plot_zoomer.h>
68 #include <qwt/qwt_scale_engine.h>
69 #include <qwt/qwt_scale_map.h>
70 #include <qwt/qwt_scale_widget.h>
71 #include <qwt/qwt_symbol.h>
72 #include <qwt/qwt_plot_renderer.h>
73 #define GAZEBO_GUI_QWT_IS_INCLUDED
74#endif
75
76#pragma clang diagnostic pop
77
78#endif