Forward declaration of WaitSet in C++

2 posts / 0 new
Last post
Reureu's picture
Offline
Last seen: 6 years 4 months ago
Joined: 11/28/2017
Posts: 4
Forward declaration of WaitSet in C++

Hi,

I'm using Connext DDS Pro 5.3.0 with VS 2015/2017.

my C++ code uses dds::core::cond::WaitSetin various places.

I'm cleaning up the include directives, and I have just realized that there is no forward declaration of dds::core::cond::WaitSetin your SDK.

I would expect to find it in  <dds/core/corefwd.hpp>but this file does not contain any forward declaration of WaitSet.

In this file, the only fwd declaration in the cond namespace is

namespace cond

{

    typedef dds::core::cond::detail::Condition Condition;

}

Why is WaitSet not declared in there?

Would you mind adding this declaration in dds/core/corefwd.hpp? Or is there a good reason not to put it in this file?

I can obviously add it to my user code, but it would be very convenient to have it in your SDK.

Kind regards,

Reureu

Reureu's picture
Offline
Last seen: 6 years 4 months ago
Joined: 11/28/2017
Posts: 4

I suppose we could push the reasoning even further and change rtiddsgen so that it creates a fwd file for the forward declaration of generated types.

Does someone have any advice on that?

Kind regards,

Reureu