Skip to content

Commit

Permalink
Subscriber config files added
Browse files Browse the repository at this point in the history
  • Loading branch information
ashariff-11 committed Aug 28, 2024
1 parent 5ba6b4e commit 30e5511
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ void AddSubscriberConfigStructToModule(nanobind::module_& module)
.def_rw("shm", &eCAL::Subscriber::CNBSubscriberConfiguration::shm)
.def_rw("udp", &eCAL::Subscriber::CNBSubscriberConfiguration::udp)
.def_rw("tcp", &eCAL::Subscriber::CNBSubscriberConfiguration::tcp);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@

#include <nanobind/nanobind.h>
#include <nanobind/operators.h>
#include <ecal/ecal.h>
#include <nanobind/operators.h>
#include <nanobind/stl/string.h>
#include <nanobind/stl/shared_ptr.h>
#include <nanobind/stl/tuple.h>
Expand All @@ -36,6 +34,8 @@
#include <memory>
#include <string>
#include <cstddef>

#include <ecal/ecal.h>
#include <ecal/ecal_types.h>

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

/**
* @brief publisher configuration, adapted for Nanobind
* @brief subscriber configuration, adapted for Nanobind
**/

#include <wrappers/wrapper_subscriber_config.h>
Expand All @@ -29,5 +29,4 @@ namespace eCAL
{
Subscriber::Configuration::Configuration();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
#pragma once

#include <ecal/ecal.h>
#include <stdint.h>
#include <string>
#include <cstddef>
#include <ecal/config/subscriber.h>
#include <ecal/ecal_os.h>
#include <ecal/types/ecal_custom_data_types.h>

#include <ecal/config/subscriber.h>
#include <stdint.h>
#include <string>
#include <cstddef>
#include <nanobind/nanobind.h>

namespace eCAL
Expand Down

0 comments on commit 30e5511

Please sign in to comment.