Skip to content

Commit

Permalink
expose toAttributesList to the shared object
Browse files Browse the repository at this point in the history
  • Loading branch information
rosen.diankov@gmail.com committed Jan 4, 2025
1 parent 0edd958 commit 1d70cc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/bindings/include/openravepy/openravepy_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ inline py::object toPyVector4(Vector v)
}

/// \brief converts dictionary of keyvalue pairs
AttributesList toAttributesList(py::dict odict);
OPENRAVEPY_API AttributesList toAttributesList(py::dict odict);
/// \brief converts list of tuples [(key,value),(key,value)], it is possible for keys to repeat
AttributesList toAttributesList(py::list olist);
AttributesList toAttributesList(py::object oattributes);
OPENRAVEPY_API AttributesList toAttributesList(py::list olist);
OPENRAVEPY_API AttributesList toAttributesList(py::object oattributes);

template <typename T>
inline py::object ReturnTransform(const T& t)
Expand Down

0 comments on commit 1d70cc4

Please sign in to comment.