Skip to content

Commit

Permalink
iox-eclipse-iceoryx#218 Remove "experimental" from include guards.
Browse files Browse the repository at this point in the history
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
  • Loading branch information
orecham committed Sep 29, 2020
1 parent d7df2b2 commit 3a04dd9
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_INL
#ifndef IOX_POSH_POPO_BASE_PUBLISHER_INL
#define IOX_POSH_POPO_BASE_PUBLISHER_INL

namespace iox
{
Expand Down Expand Up @@ -113,4 +113,4 @@ inline void BasePublisher<T, port_t>::PublisherSampleDeleter::operator()(T* cons
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_INL
#endif // IOX_POSH_POPO_BASE_PUBLISHER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_INL
#ifndef IOX_POSH_POPO_BASE_SUBSCRIBER_INL
#define IOX_POSH_POPO_BASE_SUBSCRIBER_INL

namespace iox
{
Expand Down Expand Up @@ -133,4 +133,4 @@ inline void BaseSubscriber<T, port_t>::SubscriberSampleDeleter::operator()(T* co
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_INL
#endif // IOX_POSH_POPO_BASE_SUBSCRIBER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_INL
#define IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_INL
#ifndef IOX_POSH_POPO_SAMPLE_INL
#define IOX_POSH_POPO_SAMPLE_INL

namespace iox
{
Expand Down Expand Up @@ -145,4 +145,4 @@ const mepoo::ChunkHeader* Sample<const T>::getHeader() noexcept
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_INL
#endif // IOX_POSH_POPO_SAMPLE_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_INL
#ifndef IOX_POSH_POPO_TYPED_PUBLISHER_INL
#define IOX_POSH_POPO_TYPED_PUBLISHER_INL

#include <cstdint>

Expand Down Expand Up @@ -104,4 +104,4 @@ inline bool TypedPublisher<T, base_publisher_t>::hasSubscribers() const noexcept
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_INL
#endif // IOX_POSH_POPO_TYPED_PUBLISHER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_INL
#ifndef IOX_POSH_POPO_TYPED_SUBSCRIBER_INL
#define IOX_POSH_POPO_TYPED_SUBSCRIBER_INL

namespace iox
{
Expand Down Expand Up @@ -77,4 +77,4 @@ inline void TypedSubscriber<T, base_subscriber_t>::releaseQueuedSamples() noexce
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_INL
#endif // IOX_POSH_POPO_TYPED_SUBSCRIBER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_INL
#ifndef IOX_POSH_POPO_UNTYPED_PUBLISHER_INL
#define IOX_POSH_POPO_UNTYPED_PUBLISHER_INL

namespace iox
{
Expand Down Expand Up @@ -84,4 +84,4 @@ inline bool UntypedPublisherImpl<base_publisher_t>::hasSubscribers() const noexc
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_INL
#endif // IOX_POSH_POPO_UNTYPED_PUBLISHER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_INL
#define IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_INL
#ifndef IOX_POSH_POPO_UNTYPED_SUBSCRIBER_INL
#define IOX_POSH_POPO_UNTYPED_SUBSCRIBER_INL

namespace iox
{
Expand Down Expand Up @@ -77,4 +77,4 @@ inline void UntypedSubscriberImpl<base_subscriber_t>::releaseQueuedSamples() noe
} // namespace popo
} // namespace iox

#endif // IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_INL
#endif // IOX_POSH_POPO_UNTYPED_SUBSCRIBER_INL
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_HPP
#ifndef IOX_POSH_POPO_BASE_PUBLISHER_HPP
#define IOX_POSH_POPO_BASE_PUBLISHER_HPP

#include "iceoryx_posh/internal/popo/ports/publisher_port_user.hpp"
#include "iceoryx_posh/popo/modern_api/sample.hpp"
Expand Down Expand Up @@ -143,4 +143,4 @@ class BasePublisher : public PublisherInterface<T>

#include "iceoryx_posh/internal/popo/modern_api/base_publisher.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_BASE_PUBLISHER_HPP
#endif // IOX_POSH_POPO_BASE_PUBLISHER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_HPP
#ifndef IOX_POSH_POPO_BASE_SUBSCRIBER_HPP
#define IOX_POSH_POPO_BASE_SUBSCRIBER_HPP

#include "iceoryx_posh/internal/popo/ports/subscriber_port_user.hpp"
#include "iceoryx_posh/popo/condition.hpp"
Expand Down Expand Up @@ -124,4 +124,4 @@ class BaseSubscriber : public Condition

#include "iceoryx_posh/internal/popo/modern_api/base_subscriber.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_BASE_SUBSCRIBER_HPP
#endif // IOX_POSH_POPO_BASE_SUBSCRIBER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_PUBLISHER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_PUBLISHER_HPP
#ifndef IOX_POSH_POPO_PUBLISHER_HPP
#define IOX_POSH_POPO_PUBLISHER_HPP

#include "iceoryx_posh/popo/modern_api/typed_publisher.hpp"
#include "iceoryx_posh/popo/modern_api/untyped_publisher.hpp"

#endif // IOX_EXPERIMENTAL_POSH_POPO_PUBLISHER_HPP
#endif // IOX_POSH_POPO_PUBLISHER_HPP
6 changes: 3 additions & 3 deletions iceoryx_posh/include/iceoryx_posh/popo/modern_api/sample.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_HPP
#ifndef IOX_POSH_POPO_SAMPLE_HPP
#define IOX_POSH_POPO_SAMPLE_HPP

#include "iceoryx_posh/mepoo/chunk_header.hpp"
#include "iceoryx_utils/cxx/unique_ptr.hpp"
Expand Down Expand Up @@ -101,4 +101,4 @@ class Sample<const T>

#include "iceoryx_posh/internal/popo/modern_api/sample.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_SAMPLE_HPP
#endif // IOX_POSH_POPO_SAMPLE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_SUBSCRIBER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_SUBSCRIBER_HPP
#ifndef IOX_POSH_POPO_SUBSCRIBER_HPP
#define IOX_POSH_POPO_SUBSCRIBER_HPP

#include "iceoryx_posh/popo/modern_api/typed_subscriber.hpp"
#include "iceoryx_posh/popo/modern_api/untyped_subscriber.hpp"

#endif // IOX_EXPERIMENTAL_POSH_POPO_SUBSCRIBER_HPP
#endif // IOX_POSH_POPO_SUBSCRIBER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_HPP
#ifndef IOX_POSH_POPO_TYPED_PUBLISHER_HPP
#define IOX_POSH_POPO_TYPED_PUBLISHER_HPP

#include "iceoryx_posh/popo/modern_api/base_publisher.hpp"
#include "iceoryx_posh/popo/modern_api/sample.hpp"
Expand Down Expand Up @@ -69,4 +69,4 @@ class TypedPublisher : public base_publisher_t

#include "iceoryx_posh/internal/popo/modern_api/typed_publisher.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_TYPED_PUBLISHER_HPP
#endif // IOX_POSH_POPO_TYPED_PUBLISHER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_HPP
#ifndef IOX_POSH_POPO_TYPED_SUBSCRIBER_HPP
#define IOX_POSH_POPO_TYPED_SUBSCRIBER_HPP

#include "iceoryx_posh/popo/modern_api/base_subscriber.hpp"

Expand Down Expand Up @@ -51,4 +51,4 @@ class TypedSubscriber : public base_subscriber_t

#include "iceoryx_posh/internal/popo/modern_api/typed_subscriber.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_TYPED_SUBSCRIBER_HPP
#endif // IOX_POSH_POPO_TYPED_SUBSCRIBER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_HPP
#ifndef IOX_POSH_POPO_UNTYPED_PUBLISHER_HPP
#define IOX_POSH_POPO_UNTYPED_PUBLISHER_HPP

#include "iceoryx_posh/popo/modern_api/base_publisher.hpp"
#include "iceoryx_posh/popo/modern_api/sample.hpp"
Expand Down Expand Up @@ -58,4 +58,4 @@ using UntypedPublisher = UntypedPublisherImpl<>;

#include "iceoryx_posh/internal/popo/modern_api/untyped_publisher.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_PUBLISHER_HPP
#endif // IOX_POSH_POPO_UNTYPED_PUBLISHER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_HPP
#define IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_HPP
#ifndef IOX_POSH_POPO_UNTYPED_SUBSCRIBER_HPP
#define IOX_POSH_POPO_UNTYPED_SUBSCRIBER_HPP

#include "iceoryx_posh/capro/service_description.hpp"
#include "iceoryx_posh/popo/modern_api/base_subscriber.hpp"
Expand Down Expand Up @@ -54,4 +54,4 @@ using UntypedSubscriber = UntypedSubscriberImpl<>;

#include "iceoryx_posh/internal/popo/modern_api/untyped_subscriber.inl"

#endif // IOX_EXPERIMENTAL_POSH_POPO_UNTYPED_SUBSCRIBER_HPP
#endif // IOX_POSH_POPO_UNTYPED_SUBSCRIBER_HPP

0 comments on commit 3a04dd9

Please sign in to comment.