File tree 5 files changed +8
-8
lines changed
iceoryx_examples/complexdata
iceoryx_hoofs/test/moduletests
include/iceoryx_posh/internal/roudi
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 18
18
#define IOX_EXAMPLES_COMPLEXDATA_TOPIC_DATA_HPP
19
19
20
20
#include " iceoryx_dust/cxx/forward_list.hpp"
21
- #include " iceoryx_hoofs/cxx /list.hpp"
21
+ #include " iox /list.hpp"
22
22
#include " iox/optional.hpp"
23
23
#include " iox/stack.hpp"
24
24
#include " iox/string.hpp"
Original file line number Diff line number Diff line change 15
15
//
16
16
// SPDX-License-Identifier: Apache-2.0
17
17
18
- #include " iceoryx_hoofs/cxx/list.hpp"
19
18
#include " iceoryx_hoofs/error_handling/error_handling.hpp"
20
19
#include " iceoryx_hoofs/testing/ctor_and_assignment_operator_test_class.hpp"
21
20
#include " iceoryx_hoofs/testing/fatal_failure.hpp"
22
21
#include " iox/attributes.hpp"
22
+ #include " iox/list.hpp"
23
23
#include " iox/logging.hpp"
24
24
#include " test.hpp"
25
25
26
26
27
27
namespace
28
28
{
29
29
using namespace ::testing;
30
- using namespace iox ::cxx ;
30
+ using namespace iox ;
31
31
using namespace iox ::testing;
32
32
33
33
constexpr uint64_t TESTLISTCAPACITY{10U };
Original file line number Diff line number Diff line change 17
17
#ifndef IOX_POSH_ROUDI_INTROSPECTION_PROCESS_INTROSPECTION_HPP
18
18
#define IOX_POSH_ROUDI_INTROSPECTION_PROCESS_INTROSPECTION_HPP
19
19
20
- #include " iceoryx_hoofs/cxx/list.hpp"
21
20
#include " iceoryx_hoofs/internal/concurrent/periodic_task.hpp"
22
21
#include " iceoryx_posh/iceoryx_posh_types.hpp"
23
22
#include " iceoryx_posh/internal/popo/ports/publisher_port_user.hpp"
24
23
#include " iceoryx_posh/roudi/introspection_types.hpp"
25
24
#include " iox/function.hpp"
25
+ #include " iox/list.hpp"
26
26
27
27
#include < mutex>
28
28
@@ -94,7 +94,7 @@ class ProcessIntrospection
94
94
void send () noexcept ;
95
95
96
96
private:
97
- using ProcessList_t = cxx ::list<ProcessIntrospectionData, MAX_PROCESS_NUMBER>;
97
+ using ProcessList_t = iox ::list<ProcessIntrospectionData, MAX_PROCESS_NUMBER>;
98
98
ProcessList_t m_processList;
99
99
bool m_processListNewData{true }; // true because we want to have a valid field, even with an empty list
100
100
Original file line number Diff line number Diff line change 17
17
#ifndef IOX_POSH_ROUDI_PROCESS_MANAGER_HPP
18
18
#define IOX_POSH_ROUDI_PROCESS_MANAGER_HPP
19
19
20
- #include " iceoryx_hoofs/cxx/list.hpp"
21
20
#include " iceoryx_hoofs/posix_wrapper/posix_access_rights.hpp"
22
21
#include " iceoryx_posh/internal/mepoo/segment_manager.hpp"
23
22
#include " iceoryx_posh/internal/roudi/introspection/process_introspection.hpp"
27
26
#include " iceoryx_posh/mepoo/chunk_header.hpp"
28
27
#include " iceoryx_posh/version/compatibility_check_level.hpp"
29
28
#include " iceoryx_posh/version/version_info.hpp"
29
+ #include " iox/list.hpp"
30
30
31
31
#include < cstdint>
32
32
#include < ctime>
@@ -46,7 +46,7 @@ class ProcessManagerInterface
46
46
class ProcessManager : public ProcessManagerInterface
47
47
{
48
48
public:
49
- using ProcessList_t = cxx ::list<Process, MAX_PROCESS_NUMBER>;
49
+ using ProcessList_t = iox ::list<Process, MAX_PROCESS_NUMBER>;
50
50
using PortConfigInfo = iox::runtime::PortConfigInfo;
51
51
52
52
enum class TerminationFeedback
Original file line number Diff line number Diff line change 16
16
// SPDX-License-Identifier: Apache-2.0
17
17
18
18
#include " iceoryx_dust/cxx/forward_list.hpp"
19
- #include " iceoryx_hoofs/cxx/list.hpp"
20
19
#include " iceoryx_hoofs/testing/barrier.hpp"
21
20
#include " iceoryx_hoofs/testing/watch_dog.hpp"
22
21
#include " iceoryx_posh/popo/publisher.hpp"
23
22
#include " iceoryx_posh/popo/subscriber.hpp"
24
23
#include " iceoryx_posh/roudi_env/minimal_roudi_config.hpp"
25
24
#include " iceoryx_posh/runtime/posh_runtime.hpp"
26
25
#include " iceoryx_posh/testing/roudi_gtest.hpp"
26
+ #include " iox/list.hpp"
27
27
#include " iox/optional.hpp"
28
28
#include " iox/stack.hpp"
29
29
#include " iox/string.hpp"
You can’t perform that action at this time.
0 commit comments