Skip to content

Commit

Permalink
move QoS files back
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmann-stefan committed Jul 26, 2024
1 parent b3dba61 commit 125e979
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
4 changes: 2 additions & 2 deletions rcldotnet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ set(CS_SOURCES
MessageStaticMemberCache.cs
Node.cs
Publisher.cs
QosProfile.cs
QoSProfileDelegates.cs
RCLdotnet.cs
RCLExceptionHelper.cs
RCLRet.cs
Expand All @@ -66,8 +68,6 @@ set(CS_SOURCES
ServiceDefinitionStaticMemberCache.cs
Subscription.cs
Timer.cs
QoS/QosProfile.cs
QoS/QoSProfileDelegates.cs
)

find_package(rcldotnet_common REQUIRED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System.Runtime.InteropServices;
using ROS2.Utils;

namespace ROS2.Qos
namespace ROS2
{
internal struct RmwTime
{
Expand Down
27 changes: 13 additions & 14 deletions rcldotnet/QoS/QosProfile.cs → rcldotnet/QosProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

using System;
using System.Threading;
using ROS2.Qos;

namespace ROS2
{
Expand Down Expand Up @@ -208,10 +207,10 @@ private QosProfile(

/// <summary>
/// The default QoS profile.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 10 |
Expand All @@ -228,7 +227,7 @@ private QosProfile(
/// <summary>
/// Profile for clock messages.
/// See CreateClockProfile for more details.
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 1 |
Expand All @@ -244,10 +243,10 @@ private QosProfile(

/// <summary>
/// Profile for parameter event messages.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 1000 |
Expand All @@ -263,10 +262,10 @@ private QosProfile(

/// <summary>
/// Profile for parameter messages.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 1000 |
Expand All @@ -282,10 +281,10 @@ private QosProfile(

/// <summary>
/// Profile for sensor messages.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 5 |
Expand All @@ -301,10 +300,10 @@ private QosProfile(

/// <summary>
/// Default profile for services.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | KEEP_LAST |
/// | Depth | 10 |
Expand All @@ -320,10 +319,10 @@ private QosProfile(

/// <summary>
/// The system default (null) profile.
///
///
/// Unlikely to change but valid as at 2023-10-31.
/// https://github.com/ros2/rmw/blob/rolling/rmw/include/rmw/qos_profiles.h
///
///
/// | --------------- | --------------- |
/// | History | SYSTEM_DEFAULT |
/// | Depth | SYSTEM_DEFAULT |
Expand Down

0 comments on commit 125e979

Please sign in to comment.