Ignition Gui

API Reference

5.0.0
TransportPlotting.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 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 #ifndef IGNITION_GUI_PLUGINS_TRANSPORTPLOTTING_HH_
18 #define IGNITION_GUI_PLUGINS_TRANSPORTPLOTTING_HH_
19 
20 #include <ignition/gui/Plugin.hh>
22 #include <ignition/utilities/SuppressWarning.hh>
23 
24 #include <memory>
25 
26 namespace ignition
27 {
28 namespace gui
29 {
30 namespace plugins
31 {
32 
36 {
37  Q_OBJECT
38 
40  public: TransportPlotting();
41 
43  public: ~TransportPlotting();
44 
45  // Documentation inherited
46  public: void LoadConfig(const tinyxml2::XMLElement *) override;
47 
49  IGN_UTILS_WARN_IGNORE__DLL_INTERFACE_MISSING
50  private: std::unique_ptr<PlottingInterface> dataPtr;
51  IGN_UTILS_WARN_RESUME__DLL_INTERFACE_MISSING
52 };
53 
54 }
55 }
56 }
57 #endif
void LoadConfig(const tinyxml2::XMLElement *) override
Load the plugin with a configuration file. Override this on custom plugins to handle custom configura...
Plots fields from Ignition Transport topics. Fields can be dragged from the Topic Viewer or the Compo...
Definition: TransportPlotting.hh:35
Base class for Ignition GUI plugins.
Definition: Plugin.hh:54
STL class.
Definition: Application.hh:40