Skip to content

Commit 01662e8

Browse files
committed
Refs #20765: Make .h files .hpp
Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com>
1 parent fc47457 commit 01662e8

19 files changed

Lines changed: 28 additions & 28 deletions

include/fastdds/rtps/writer/StatelessPersistentWriter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
2222

23-
#include <fastdds/rtps/writer/StatelessWriter.h>
23+
#include <fastdds/rtps/writer/StatelessWriter.hpp>
2424
#include <fastdds/rtps/writer/PersistentWriter.h>
2525

2626
namespace eprosima {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <fastdds/rtps/common/EntityId_t.hpp>
2626
#include <rtps/builtin/BuiltinReader.hpp>
2727
#include <rtps/builtin/discovery/participant/DS/DiscoveryServerPDPEndpoints.hpp>
28-
#include <rtps/reader/StatelessReader.h>
28+
#include <rtps/reader/StatelessReader.hpp>
2929

3030
namespace eprosima {
3131
namespace fastdds {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
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/writer/StatelessWriter.h>
36+
#include <fastdds/rtps/writer/StatelessWriter.hpp>
3737

3838
#include <fastdds/builtin/type_lookup_service/TypeLookupManager.hpp>
3939
#include <fastdds/utils/IPLocator.h>
@@ -49,7 +49,7 @@
4949
#include <rtps/resources/TimedEvent.h>
5050
#include <rtps/participant/RTPSParticipantImpl.h>
5151
#include <rtps/reader/StatefulReader.h>
52-
#include <rtps/reader/StatelessReader.h>
52+
#include <rtps/reader/StatelessReader.hpp>
5353
#include <utils/shared_mutex.hpp>
5454
#include <utils/TimeConversion.hpp>
5555

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <fastdds/rtps/history/ReaderHistory.h>
2828
#include <fastdds/rtps/history/WriterHistory.h>
2929
#include <fastdds/rtps/participant/RTPSParticipantListener.h>
30-
#include <fastdds/rtps/writer/StatelessWriter.h>
30+
#include <fastdds/rtps/writer/StatelessWriter.hpp>
3131

3232
#include <fastdds/builtin/type_lookup_service/TypeLookupManager.hpp>
3333
#include <fastdds/utils/IPLocator.h>
@@ -44,7 +44,7 @@
4444
#include <rtps/participant/RTPSParticipantImpl.h>
4545
#include <rtps/reader/StatefulReader.h>
4646
#include <rtps/resources/TimedEvent.h>
47-
#include <rtps/reader/StatelessReader.h>
47+
#include <rtps/reader/StatelessReader.hpp>
4848

4949
namespace eprosima {
5050
namespace fastrtps {

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

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

2424
#include <fastdds/rtps/builtin/data/BuiltinEndpoints.hpp>
25-
#include <fastdds/rtps/writer/StatelessWriter.h>
25+
#include <fastdds/rtps/writer/StatelessWriter.hpp>
2626
#include <rtps/builtin/BuiltinReader.hpp>
2727
#include <rtps/builtin/BuiltinWriter.hpp>
2828
#include <rtps/builtin/discovery/participant/PDPEndpoints.hpp>
2929
#include <rtps/history/ITopicPayloadPool.h>
30-
#include <rtps/reader/StatelessReader.h>
30+
#include <rtps/reader/StatelessReader.hpp>
3131

3232
namespace eprosima {
3333
namespace fastdds {

src/cpp/rtps/participant/RTPSParticipantImpl.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
#include <fastdds/rtps/transport/UDPv4TransportDescriptor.h>
4444
#include <fastdds/rtps/writer/StatefulPersistentWriter.h>
4545
#include <fastdds/rtps/writer/StatefulWriter.h>
46-
#include <fastdds/rtps/writer/StatelessPersistentWriter.h>
47-
#include <fastdds/rtps/writer/StatelessWriter.h>
46+
#include <fastdds/rtps/writer/StatelessPersistentWriter.hpp>
47+
#include <fastdds/rtps/writer/StatelessWriter.hpp>
4848
#include <fastdds/utils/IPFinder.h>
4949

5050
#include <rtps/builtin/BuiltinProtocols.h>
@@ -61,9 +61,9 @@
6161
#include <rtps/participant/RTPSParticipantImpl.h>
6262
#include <rtps/persistence/PersistenceService.h>
6363
#include <rtps/reader/StatefulPersistentReader.h>
64-
#include <rtps/reader/StatelessPersistentReader.h>
64+
#include <rtps/reader/StatelessPersistentReader.hpp>
6565
#include <rtps/reader/StatefulReader.h>
66-
#include <rtps/reader/StatelessReader.h>
66+
#include <rtps/reader/StatelessReader.hpp>
6767
#include <statistics/rtps/GuidUtils.hpp>
6868
#include <utils/Semaphore.hpp>
6969
#include <utils/string_utilities.hpp>

src/cpp/rtps/reader/StatefulPersistentReader.h renamed to src/cpp/rtps/reader/StatefulPersistentReader.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
/**
16-
* @file StatefulPersistentReader.h
16+
* @file StatefulPersistentReader.hpp
1717
*/
1818

1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
/**
16-
* @file .h
16+
* @file StatefulReader.hpp
1717
*/
1818

1919
#ifndef _FASTDDS_RTPS_READER_STATEFULREADER_H_

src/cpp/rtps/reader/StatelessPersistentReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
*/
1919

20-
#include <rtps/reader/StatelessPersistentReader.h>
20+
#include <rtps/reader/StatelessPersistentReader.hpp>
2121

2222
#include <fastdds/rtps/history/ReaderHistory.h>
2323

src/cpp/rtps/reader/StatelessPersistentReader.h renamed to src/cpp/rtps/reader/StatelessPersistentReader.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
// limitations under the License.
1414

1515
/**
16-
* @file StatelessPersistentReader.h
16+
* @file StatelessPersistentReader.hpp
1717
*/
1818

1919

2020
#ifndef _FASTDDS_RTPS_STATELESSPERSISTENTREADER_H_
2121
#define _FASTDDS_RTPS_STATELESSPERSISTENTREADER_H_
2222
#ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
2323

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

2626
namespace eprosima {
2727
namespace fastrtps {

0 commit comments

Comments
 (0)