We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d119d commit 14ed084Copy full SHA for 14ed084
1 file changed
bindings/Sofa/src/SofaPython3/Sofa/Helper/Binding_MessageDispatcher.cpp
@@ -33,12 +33,12 @@ void sofapython3::moduleAddMessageDispatcher(pybind11::module &m)
33
Configuration of the message dispatcher.
34
)doc";
35
36
- messageDispatcherModule.def("clear_handlers",
+ messageDispatcherModule.def("clearHandlers",
37
[](){
38
sofa::helper::logging::MessageDispatcher::clearHandlers();
39
}, "Removes all registered message handlers.");
40
41
- messageDispatcherModule.def("num_handlers",
+ messageDispatcherModule.def("numHandlers",
42
43
return sofa::helper::logging::MessageDispatcher::getHandlers().size();
44
}, "Returns the number of registered message handlers.");
0 commit comments