Skip to content

Commit 9a94bdf

Browse files
authored
include QString (#1298)
1 parent 0d95ae1 commit 9a94bdf

File tree

203 files changed

+348
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+348
-44
lines changed

rviz_common/include/rviz_common/display.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
#include <QIcon> // NOLINT: cpplint is unable to handle the include order here
3838
#include <QSet> // NOLINT: cpplint is unable to handle the include order here
39+
#include <QString> // NOLINT: cpplint is unable to handle the include order here
3940

4041
#include "rclcpp/time.hpp"
4142

rviz_common/include/rviz_common/display_group.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#ifndef RVIZ_COMMON__DISPLAY_GROUP_HPP_
3333
#define RVIZ_COMMON__DISPLAY_GROUP_HPP_
3434

35+
#include <QString>
36+
3537
#include "rviz_common/display.hpp"
3638
#include "rviz_common/visibility_control.hpp"
3739

rviz_common/include/rviz_common/factory/class_id_recording_factory.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#ifndef RVIZ_COMMON__FACTORY__CLASS_ID_RECORDING_FACTORY_HPP_
3333
#define RVIZ_COMMON__FACTORY__CLASS_ID_RECORDING_FACTORY_HPP_
3434

35+
#include <QString>
36+
3537
#include "./factory.hpp"
3638

3739
namespace rviz_common

rviz_common/include/rviz_common/message_filter_display.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
#include <memory>
3636
#include <string>
3737

38+
#include <QString> // NOLINT: cpplint is unable to handle the include order here
39+
3840
#include <message_filters/subscriber.hpp>
3941

4042
#include "rviz_common/ros_topic_display.hpp"

rviz_common/include/rviz_common/panel.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#ifndef RVIZ_COMMON__PANEL_HPP_
3434
#define RVIZ_COMMON__PANEL_HPP_
3535

36+
#include <QString>
3637
#include <QWidget>
3738

3839
#include "rviz_common/config.hpp"

rviz_common/include/rviz_common/panel_dock_widget.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
#include <QDockWidget>
3636
#include <QLabel>
37+
#include <QString>
3738

3839
#include "rviz_common/config.hpp"
3940
#include "rviz_common/visibility_control.hpp"

rviz_common/include/rviz_common/properties/bool_property.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#ifndef RVIZ_COMMON__PROPERTIES__BOOL_PROPERTY_HPP_
3333
#define RVIZ_COMMON__PROPERTIES__BOOL_PROPERTY_HPP_
3434

35+
#include <QString>
36+
3537
#include "rviz_common/properties/property.hpp"
3638
#include "rviz_common/visibility_control.hpp"
3739

rviz_common/include/rviz_common/properties/combo_box.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#define RVIZ_COMMON__PROPERTIES__COMBO_BOX_HPP_
3232

3333
#include <QComboBox>
34+
#include <QString>
3435

3536
#include "rviz_common/visibility_control.hpp"
3637

rviz_common/include/rviz_common/properties/covariance_property.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include <OgreColourValue.h>
3939

4040
#include <QColor> // NOLINT cpplint cannot handle include order here
41+
#include <QString> // NOLINT cpplint cannot handle include order here
4142

4243
#include "rviz_common/properties/bool_property.hpp"
4344
#include "rviz_common/visibility_control.hpp"

rviz_common/include/rviz_common/properties/enum_property.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232
#ifndef RVIZ_COMMON__PROPERTIES__ENUM_PROPERTY_HPP_
3333
#define RVIZ_COMMON__PROPERTIES__ENUM_PROPERTY_HPP_
3434

35-
#include <QStringList>
36-
3735
#include <string>
3836

37+
#include <QString> // NOLINT: cpplint is unable to handle the include order here
38+
#include <QStringList> // NOLINT: cpplint is unable to handle the include order here
39+
3940
#include "rviz_common/properties/string_property.hpp"
4041
#include "rviz_common/visibility_control.hpp"
4142

0 commit comments

Comments
 (0)