Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable HIDE_SYMBOLS_BY_DEFAULT + linux patches #2248

Merged
merged 4 commits into from
Dec 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make the linter happy
Signed-off-by: Jose Luis Rivero <jrivero@osrfoundation.org>
j-rivero committed Dec 14, 2023
commit 66cc09f15e3eaa5a5ae140ba5ee02dea9fd96f4e
Original file line number Diff line number Diff line change
@@ -26,7 +26,8 @@
#include <gz/sim/Types.hh>

#ifndef _WIN32
# define JointPositionController_EXPORTS_API __attribute__ ((visibility ("default")))
# define JointPositionController_EXPORTS_API \
__attribute__ ((visibility ("default")))
#else
# if (defined(JointPositionController_EXPORTS))
# define JointPositionController_EXPORTS_API __declspec(dllexport)
@@ -46,7 +47,8 @@ namespace gui
class JointPositionControllerPrivate;

/// \brief Model holding information about joints
class JointPositionController_EXPORTS_API JointsModel : public QStandardItemModel
class JointPositionController_EXPORTS_API JointsModel :
public QStandardItemModel
{
Q_OBJECT

@@ -98,7 +100,8 @@ namespace gui
/// `<model_name>`: Load the widget pointed at the given model, so it's not
/// necessary to select it. If a model is given at startup, the plugin starts
/// in locked mode.
class JointPositionController_EXPORTS_API JointPositionController : public sim::GuiSystem
class JointPositionController_EXPORTS_API JointPositionController :
public sim::GuiSystem
{
Q_OBJECT

Loading