| 405 | }; |
| 406 | |
| 407 | static inline PyObjectWrapper::Pointer pyObjectWrap(PyObject *obj) { |
| 408 | return std::make_shared<PyObjectWrapper>(obj); |
| 409 | } |
| 410 | |
| 411 | static inline bool isAnyPyObject(const App::any &value) { |
| 412 | return is_type(value,typeid(PyObjectWrapper::Pointer)); |