Skip to content

Commit

Permalink
Move adaptor specific detail headers from ureact/adaptor/ to ureact/a…
Browse files Browse the repository at this point in the history
…daptor/detail/
  • Loading branch information
YarikTH committed Oct 28, 2023
1 parent b0e78e2 commit 81f0493
Show file tree
Hide file tree
Showing 18 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion include/ureact/adaptor/adjacent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_ADJACENT_HPP
#define UREACT_ADAPTOR_ADJACENT_HPP

#include <ureact/adaptor/detail/adjacent_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/adjacent_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/adjacent_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_ADJACENT_FILTER_HPP
#define UREACT_ADAPTOR_ADJACENT_FILTER_HPP

#include <ureact/adaptor/detail/adjacent_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/adjacent_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/adjacent_transform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_ADJACENT_TRANSFORM_HPP
#define UREACT_ADAPTOR_ADJACENT_TRANSFORM_HPP

#include <ureact/adaptor/detail/adjacent_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/adjacent_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef UREACT_DETAIL_ADJACENT_BASE_HPP
#define UREACT_DETAIL_ADJACENT_BASE_HPP
#ifndef UREACT_ADAPTOR_DETAIL_ADJACENT_BASE_HPP
#define UREACT_ADAPTOR_DETAIL_ADJACENT_BASE_HPP

#include <array>
#include <functional>
Expand Down Expand Up @@ -205,4 +205,4 @@ class event_adjacent_node final

UREACT_END_NAMESPACE

#endif // UREACT_DETAIL_ADJACENT_BASE_HPP
#endif // UREACT_ADAPTOR_DETAIL_ADJACENT_BASE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef UREACT_DETAIL_REACTIVE_OP_BASE_HPP
#define UREACT_DETAIL_REACTIVE_OP_BASE_HPP
#ifndef UREACT_ADAPTOR_DETAIL_REACTIVE_OP_BASE_HPP
#define UREACT_ADAPTOR_DETAIL_REACTIVE_OP_BASE_HPP

#include <ureact/detail/linker_functor.hpp>
#include <ureact/utility/type_traits.hpp>
Expand Down Expand Up @@ -64,4 +64,4 @@ class reactive_op_base

UREACT_END_NAMESPACE

#endif //UREACT_DETAIL_REACTIVE_OP_BASE_HPP
#endif //UREACT_ADAPTOR_DETAIL_REACTIVE_OP_BASE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef UREACT_DETAIL_SYNCED_ADAPTOR_BASE_HPP
#define UREACT_DETAIL_SYNCED_ADAPTOR_BASE_HPP
#ifndef UREACT_ADAPTOR_DETAIL_SYNCED_ADAPTOR_BASE_HPP
#define UREACT_ADAPTOR_DETAIL_SYNCED_ADAPTOR_BASE_HPP

#include <ureact/detail/adaptor.hpp>
#include <ureact/utility/signal_pack.hpp>
Expand Down Expand Up @@ -45,4 +45,4 @@ struct SyncedAdaptorBase : adaptor

UREACT_END_NAMESPACE

#endif // UREACT_DETAIL_SYNCED_ADAPTOR_BASE_HPP
#endif // UREACT_ADAPTOR_DETAIL_SYNCED_ADAPTOR_BASE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef UREACT_DETAIL_TAKE_DROP_BASE_HPP
#define UREACT_DETAIL_TAKE_DROP_BASE_HPP
#ifndef UREACT_ADAPTOR_DETAIL_TAKE_DROP_BASE_HPP
#define UREACT_ADAPTOR_DETAIL_TAKE_DROP_BASE_HPP

#include <cassert>
#include <type_traits>
Expand Down Expand Up @@ -81,4 +81,4 @@ struct TakeDropAdaptorBase : adaptor

UREACT_END_NAMESPACE

#endif // UREACT_DETAIL_TAKE_DROP_BASE_HPP
#endif // UREACT_ADAPTOR_DETAIL_TAKE_DROP_BASE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef UREACT_DETAIL_ZIP_BASE_HPP
#define UREACT_DETAIL_ZIP_BASE_HPP
#ifndef UREACT_ADAPTOR_DETAIL_ZIP_BASE_HPP
#define UREACT_ADAPTOR_DETAIL_ZIP_BASE_HPP

#include <deque>
#include <functional>
Expand Down Expand Up @@ -162,4 +162,4 @@ class event_zip_node final : public event_stream_node<zip_result_t<Type, F, Valu

UREACT_END_NAMESPACE

#endif // UREACT_DETAIL_ZIP_BASE_HPP
#endif // UREACT_ADAPTOR_DETAIL_ZIP_BASE_HPP
2 changes: 1 addition & 1 deletion include/ureact/adaptor/drop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include <cassert>
#include <type_traits>

#include <ureact/adaptor/detail/take_drop_base.hpp>
#include <ureact/adaptor/filter.hpp>
#include <ureact/detail/take_drop_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/drop_while.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_DROP_WHILE_HPP
#define UREACT_ADAPTOR_DROP_WHILE_HPP

#include <ureact/adaptor/detail/synced_adaptor_base.hpp>
#include <ureact/adaptor/filter.hpp>
#include <ureact/detail/synced_adaptor_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_FILTER_HPP
#define UREACT_ADAPTOR_FILTER_HPP

#include <ureact/adaptor/detail/synced_adaptor_base.hpp>
#include <ureact/adaptor/process.hpp>
#include <ureact/detail/synced_adaptor_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/lift.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#include <cassert>
#include <functional>

#include <ureact/adaptor/detail/reactive_op_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/deduce_result_type.hpp>
#include <ureact/detail/reactive_op_base.hpp>
#include <ureact/detail/temp_signal.hpp>
#include <ureact/signal.hpp>
#include <ureact/utility/signal_pack.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/slice.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include <cassert>
#include <type_traits>

#include <ureact/adaptor/detail/take_drop_base.hpp>
#include <ureact/adaptor/filter.hpp>
#include <ureact/detail/take_drop_base.hpp>
#include <ureact/utility/type_traits.hpp>

UREACT_BEGIN_NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/take.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include <cassert>
#include <type_traits>

#include <ureact/adaptor/detail/take_drop_base.hpp>
#include <ureact/adaptor/filter.hpp>
#include <ureact/detail/take_drop_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/take_while.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_TAKE_WHILE_HPP
#define UREACT_ADAPTOR_TAKE_WHILE_HPP

#include <ureact/adaptor/detail/synced_adaptor_base.hpp>
#include <ureact/adaptor/filter.hpp>
#include <ureact/detail/synced_adaptor_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/transform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#ifndef UREACT_ADAPTOR_TRANSFORM_HPP
#define UREACT_ADAPTOR_TRANSFORM_HPP

#include <ureact/adaptor/detail/synced_adaptor_base.hpp>
#include <ureact/adaptor/process.hpp>
#include <ureact/detail/deduce_result_type.hpp>
#include <ureact/detail/synced_adaptor_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/zip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_ZIP_HPP
#define UREACT_ADAPTOR_ZIP_HPP

#include <ureact/adaptor/detail/zip_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/zip_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion include/ureact/adaptor/zip_transform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef UREACT_ADAPTOR_ZIP_TRANSFORM_HPP
#define UREACT_ADAPTOR_ZIP_TRANSFORM_HPP

#include <ureact/adaptor/detail/zip_base.hpp>
#include <ureact/detail/adaptor.hpp>
#include <ureact/detail/zip_base.hpp>

UREACT_BEGIN_NAMESPACE

Expand Down

0 comments on commit 81f0493

Please sign in to comment.