From 0238aaa45ee76d62b4678bf92047dec82c909fef Mon Sep 17 00:00:00 2001
From: cmoineau <cyril.moineau@cea.fr>
Date: Wed, 11 Oct 2023 08:12:16 +0000
Subject: [PATCH] [Hook] Fix hook.

---
 include/aidge/hook/Hook.hpp                 | 4 ++--
 python_binding/operator/pybind_Operator.cpp | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/aidge/hook/Hook.hpp b/include/aidge/hook/Hook.hpp
index 28f7ef5cd..5e00db5d6 100644
--- a/include/aidge/hook/Hook.hpp
+++ b/include/aidge/hook/Hook.hpp
@@ -31,11 +31,11 @@ protected:
 
 public:
     Hook(std::shared_ptr<Operator> op) : mOperator(op) {}
-    virtual ~Hook();
+    virtual ~Hook() = default;
 
     virtual void call() = 0;
 
 };
 }
 
-#endif /* Hook_H_ */
\ No newline at end of file
+#endif /* Hook_H_ */
diff --git a/python_binding/operator/pybind_Operator.cpp b/python_binding/operator/pybind_Operator.cpp
index ac9a34e0a..d945b212f 100644
--- a/python_binding/operator/pybind_Operator.cpp
+++ b/python_binding/operator/pybind_Operator.cpp
@@ -20,6 +20,7 @@ void init_Operator(py::module& m){
     py::class_<Operator, std::shared_ptr<Operator>>(m, "Operator")
     .def("output", &Operator::output, py::arg("outputIdx"))
     .def("input", &Operator::input, py::arg("inputIdx"))
+    .def("nb_data_inputs", &Operator::nbDataInputs)
     .def("associate_input", &Operator::associateInput, py::arg("inputIdx"), py::arg("data"))
     .def("set_datatype", &Operator::setDatatype, py::arg("datatype"))
     .def("set_backend", &Operator::setBackend, py::arg("name"))
-- 
GitLab