From 9a1ee173f091afb2e0cb680328a0ae12830f70e5 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 22 Feb 2024 14:49:36 +0000 Subject: [PATCH] Initial working python registrar. --- include/aidge/operator/Operator.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index 396c60e46..efb6d168b 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -128,6 +128,14 @@ public: return mImpl; } + /** + * @brief Get the OperatorImpl of the Operator + * + */ + std::shared_ptr<OperatorImpl> getImpl(){ + return mImpl; + } + /** * @brief Minimum amount of data from a specific input for one computation pass. * @param inputIdx Index of the input analysed. -- GitLab