Skip to content

Commit

Permalink
iox-eclipse-iceoryx#831 Remove MethodCallback, replace its usages with
Browse files Browse the repository at this point in the history
cxx::function and remove unused Trigger::updateOrigin

Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
  • Loading branch information
mossmaurice committed Jun 27, 2022
1 parent 9181144 commit 2d8e494
Show file tree
Hide file tree
Showing 27 changed files with 59 additions and 1,122 deletions.
1 change: 0 additions & 1 deletion iceoryx_hoofs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class should be used.
|`GenericRAII` | | | This is an abstraction of the C++ RAII idiom. Sometimes you have constructs where you would like to perform a certain task on creation and then again when they are getting out of scope, this is where `GenericRAII` comes in. It is like a `std::lock_guard` or a `std::shared_ptr` but more generic. |
|`helplets` | | | Implementations of [C++ Core Guideline](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) concepts like `not_null` are contained here. Additionally, we are providing some types to verify preconditions at compile time. Think of an int which has to be always greater 5, here we provide types like `greater_or_equal<int, 6>`.|
|`list` | | | Heap and exception free, relocatable implementation of `std::list` |
|`MethodCallback` | | X | Constructs a callback from a pointer to a specific object and a pointer to a method of that object, also as `ConstMethodCallback` available |
|`NewType<T, Policies>`| | | C++11 implementation of [Haskells NewType-pattern](https://wiki.haskell.org/Newtype). |
|`optional` | | | C++11 implementation of the C++17 feature `std::optional` |
|`pair` | i | X | Simplistic re-implementation of an `std::pair`. |
Expand Down
189 changes: 0 additions & 189 deletions iceoryx_hoofs/include/iceoryx_hoofs/cxx/method_callback.hpp

This file was deleted.

Loading

0 comments on commit 2d8e494

Please sign in to comment.