Skip to content

Commit

Permalink
Refs #20567: Correctly export API in Windows for ReplierQos and Reque…
Browse files Browse the repository at this point in the history
…sterQos

Signed-off-by: EduPonz <eduardoponz@eprosima.com>
  • Loading branch information
EduPonz committed Mar 26, 2024
1 parent 5e1ee49 commit 4259298
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/fastdds/dds/domain/qos/ReplierQos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ namespace eprosima {
namespace fastdds {
namespace dds {

class FASTDDS_EXPORTED_API ReplierQos
class ReplierQos
{
public:

/**
* @brief Constructor
*/
ReplierQos() = default;
FASTDDS_EXPORTED_API ReplierQos() = default;

/**
* @brief Equal comparison operator
*/
bool operator ==(
FASTDDS_EXPORTED_API bool operator ==(
const ReplierQos& b) const
{
return (this->service_name == b.service_name) &&
Expand Down
6 changes: 3 additions & 3 deletions include/fastdds/dds/domain/qos/RequesterQos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ namespace eprosima {
namespace fastdds {
namespace dds {

class FASTDDS_EXPORTED_API RequesterQos
class RequesterQos
{
public:

/**
* @brief Constructor
*/
RequesterQos() = default;
FASTDDS_EXPORTED_API RequesterQos() = default;

/**
* @brief Equal comparison operator
*/
bool operator ==(
FASTDDS_EXPORTED_API bool operator ==(
const RequesterQos& b) const
{
return (this->service_name == b.service_name) &&
Expand Down

0 comments on commit 4259298

Please sign in to comment.