Skip to content

Commit

Permalink
Folder restructuring.
Browse files Browse the repository at this point in the history
  • Loading branch information
KerstinKeller committed Jul 17, 2024
1 parent 788ab7f commit 3d9d748
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
16 changes: 8 additions & 8 deletions ecal/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -284,18 +284,18 @@ if (ECAL_CORE_REGISTRATION)
src/registration/ecal_registration_provider.h
src/registration/ecal_registration_receiver.cpp
src/registration/ecal_registration_receiver.h
src/registration/ecal_registration_receiver_udp.cpp
src/registration/ecal_registration_receiver_udp.h
src/registration/ecal_registration_sender.h
src/registration/ecal_registration_sender_udp.cpp
src/registration/ecal_registration_sender_udp.h
src/registration/udp/ecal_registration_receiver_udp.cpp
src/registration/udp/ecal_registration_receiver_udp.h
src/registration/udp/ecal_registration_sender_udp.cpp
src/registration/udp/ecal_registration_sender_udp.h
)
if(ECAL_CORE_REGISTRATION_SHM)
list(APPEND ecal_registration_src
src/registration/ecal_registration_receiver_shm.cpp
src/registration/ecal_registration_receiver_shm.h
src/registration/ecal_registration_sender_shm.cpp
src/registration/ecal_registration_sender_shm.h
src/registration/shm/ecal_registration_receiver_shm.cpp
src/registration/shm/ecal_registration_receiver_shm.h
src/registration/shm/ecal_registration_sender_shm.cpp
src/registration/shm/ecal_registration_sender_shm.h
src/registration/shm/ecal_memfile_broadcast.cpp
src/registration/shm/ecal_memfile_broadcast.h
src/registration/shm/ecal_memfile_broadcast_reader.cpp
Expand Down
4 changes: 2 additions & 2 deletions ecal/core/src/registration/ecal_registration_provider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
#include "ecal_def.h"

#include <registration/ecal_process_registration.h>
#include <registration/ecal_registration_sender_udp.h>
#include <registration/udp/ecal_registration_sender_udp.h>
#if ECAL_CORE_REGISTRATION_SHM
#include <registration/ecal_registration_sender_shm.h>
#include <registration/shm/ecal_registration_sender_shm.h>
#endif

namespace eCAL
Expand Down
4 changes: 2 additions & 2 deletions ecal/core/src/registration/ecal_registration_receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@

#include "registration/ecal_registration_receiver.h"

#include "registration/ecal_registration_receiver_udp.h"
#include "registration/udp/ecal_registration_receiver_udp.h"
#if ECAL_CORE_REGISTRATION_SHM
#include "registration/ecal_registration_receiver_shm.h"
#include "registration/shm/ecal_registration_receiver_shm.h"
#endif
#include "ecal_global_accessors.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

#include "ecal_globals.h"

#include "ecal_registration_receiver_shm.h"
#include "registration/shm/ecal_registration_receiver_shm.h"
#include "serialization/ecal_serialize_sample_registration.h"

#include "shm/ecal_memfile_broadcast.h"
#include "shm/ecal_memfile_broadcast_reader.h"
#include "registration/shm/ecal_memfile_broadcast.h"
#include "registration/shm/ecal_memfile_broadcast_reader.h"
#include "util/ecal_thread.h"

namespace eCAL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
**/

#include "registration/ecal_registration_sender_shm.h"
#include "registration/shm/ecal_registration_sender_shm.h"
#include "serialization/ecal_serialize_sample_registration.h"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

#include "registration/ecal_registration_sender.h"

#include "shm/ecal_memfile_broadcast.h"
#include "shm/ecal_memfile_broadcast_writer.h"
#include "registration/shm/ecal_memfile_broadcast.h"
#include "registration/shm/ecal_memfile_broadcast_writer.h"

namespace eCAL
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* ========================= eCAL LICENSE =================================
*/

#include "registration/ecal_registration_receiver_udp.h"
#include "registration/udp/ecal_registration_receiver_udp.h"

#include "io/udp/ecal_udp_receiver_attr.h"
#include "io/udp/ecal_udp_sample_receiver.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
**/

#include "registration/ecal_registration_sender_udp.h"
#include "registration/udp/ecal_registration_sender_udp.h"

#include "serialization/ecal_serialize_sample_registration.h"
#include "io/udp/ecal_udp_configurations.h"
Expand Down

0 comments on commit 3d9d748

Please sign in to comment.