Skip to content

Commit f23b852

Browse files
committed
Refs #20765: Make StatelessReader private
Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com>
1 parent ac91c33 commit f23b852

13 files changed

Lines changed: 10 additions & 37 deletions

File tree

include/fastrtps/rtps/reader/StatelessReader.h

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/cpp/rtps/builtin/discovery/participant/DS/DiscoveryServerPDPEndpointsSecure.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@
2323

2424
#include <fastdds/rtps/builtin/data/BuiltinEndpoints.hpp>
2525
#include <fastdds/rtps/common/EntityId_t.hpp>
26-
#include <fastdds/rtps/reader/StatelessReader.h>
27-
2826
#include <rtps/builtin/BuiltinReader.hpp>
2927
#include <rtps/builtin/discovery/participant/DS/DiscoveryServerPDPEndpoints.hpp>
28+
#include <rtps/reader/StatelessReader.h>
3029

3130
namespace eprosima {
3231
namespace fastdds {

src/cpp/rtps/builtin/discovery/participant/PDP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
#include <fastdds/rtps/history/ReaderHistory.h>
3434
#include <fastdds/rtps/history/WriterHistory.h>
3535
#include <fastdds/rtps/participant/RTPSParticipantListener.h>
36-
#include <fastdds/rtps/reader/StatelessReader.h>
3736
#include <fastdds/rtps/resources/TimedEvent.h>
3837
#include <fastdds/rtps/writer/StatelessWriter.h>
3938

@@ -50,6 +49,7 @@
5049
#include <rtps/network/utils/external_locators.hpp>
5150
#include <rtps/participant/RTPSParticipantImpl.h>
5251
#include <rtps/reader/StatefulReader.h>
52+
#include <rtps/reader/StatelessReader.h>
5353
#include <utils/shared_mutex.hpp>
5454
#include <utils/TimeConversion.hpp>
5555

src/cpp/rtps/builtin/discovery/participant/PDPSimple.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include <fastdds/rtps/history/ReaderHistory.h>
2929
#include <fastdds/rtps/history/WriterHistory.h>
3030
#include <fastdds/rtps/participant/RTPSParticipantListener.h>
31-
#include <fastdds/rtps/reader/StatelessReader.h>
3231
#include <fastdds/rtps/resources/TimedEvent.h>
3332
#include <fastdds/rtps/writer/StatelessWriter.h>
3433

@@ -45,6 +44,7 @@
4544
#include <rtps/history/TopicPayloadPoolRegistry.hpp>
4645
#include <rtps/participant/RTPSParticipantImpl.h>
4746
#include <rtps/reader/StatefulReader.h>
47+
#include <rtps/reader/StatelessReader.h>
4848

4949
namespace eprosima {
5050
namespace fastrtps {

src/cpp/rtps/builtin/discovery/participant/simple/SimplePDPEndpoints.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@
2222
#include <memory>
2323

2424
#include <fastdds/rtps/builtin/data/BuiltinEndpoints.hpp>
25-
#include <fastdds/rtps/reader/StatelessReader.h>
2625
#include <fastdds/rtps/writer/StatelessWriter.h>
27-
2826
#include <rtps/builtin/BuiltinReader.hpp>
2927
#include <rtps/builtin/BuiltinWriter.hpp>
3028
#include <rtps/builtin/discovery/participant/PDPEndpoints.hpp>
3129
#include <rtps/history/ITopicPayloadPool.h>
30+
#include <rtps/reader/StatelessReader.h>
3231

3332
namespace eprosima {
3433
namespace fastdds {

src/cpp/rtps/participant/RTPSParticipantImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include <fastdds/rtps/history/WriterHistory.h>
3737
#include <fastdds/rtps/participant/ParticipantDiscoveryInfo.h>
3838
#include <fastdds/rtps/participant/RTPSParticipant.h>
39-
#include <fastdds/rtps/reader/StatelessReader.h>
4039
#include <fastdds/rtps/RTPSDomain.h>
4140
#include <fastdds/rtps/transport/shared_mem/SharedMemTransportDescriptor.h>
4241
#include <fastdds/rtps/transport/TCPv4TransportDescriptor.h>
@@ -65,6 +64,7 @@
6564
#include <rtps/reader/StatefulPersistentReader.h>
6665
#include <rtps/reader/StatelessPersistentReader.h>
6766
#include <rtps/reader/StatefulReader.h>
67+
#include <rtps/reader/StatelessReader.h>
6868
#include <statistics/rtps/GuidUtils.hpp>
6969
#include <utils/Semaphore.hpp>
7070
#include <utils/string_utilities.hpp>

src/cpp/rtps/reader/StatelessPersistentReader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#define _FASTDDS_RTPS_STATELESSPERSISTENTREADER_H_
2222
#ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
2323

24-
#include <fastdds/rtps/reader/StatelessReader.h>
24+
#include <rtps/reader/StatelessReader.h>
2525

2626
namespace eprosima {
2727
namespace fastrtps {

src/cpp/rtps/reader/StatelessReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
#include <fastdds/rtps/common/VendorId_t.hpp>
2727
#include <fastdds/rtps/history/ReaderHistory.h>
2828
#include <fastdds/rtps/reader/ReaderListener.h>
29-
#include <fastdds/rtps/reader/StatelessReader.h>
3029

3130
#include <rtps/builtin/BuiltinProtocols.h>
3231
#include <rtps/builtin/liveliness/WLP.h>
3332
#include <rtps/DataSharing/DataSharingListener.hpp>
3433
#include <rtps/DataSharing/ReaderPool.hpp>
3534
#include <rtps/participant/RTPSParticipantImpl.h>
35+
#include <rtps/reader/StatelessReader.h>
3636
#include <rtps/writer/LivelinessManager.hpp>
3737

3838
#include "rtps/RTPSDomainImpl.hpp"
File renamed without changes.

src/cpp/rtps/security/SecurityManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include <fastdds/rtps/history/WriterHistory.h>
3333
#include <fastdds/rtps/messages/CDRMessage.h>
3434
#include <fastdds/rtps/participant/RTPSParticipantListener.h>
35-
#include <fastdds/rtps/reader/StatelessReader.h>
3635
#include <fastdds/rtps/security/accesscontrol/AccessControl.h>
3736
#include <fastdds/rtps/security/accesscontrol/EndpointSecurityAttributes.h>
3837
#include <fastdds/rtps/security/accesscontrol/ParticipantSecurityAttributes.h>
@@ -47,6 +46,7 @@
4746
#include <rtps/network/NetworkFactory.h>
4847
#include <rtps/participant/RTPSParticipantImpl.h>
4948
#include <rtps/reader/StatefulReader.h>
49+
#include <rtps/reader/StatelessReader.h>
5050
#include <security/OpenSSLInit.hpp>
5151

5252
#define BUILTIN_ENDPOINT_PARTICIPANT_MESSAGE_SECURE_WRITER (1 << 20)

0 commit comments

Comments
 (0)