From 71e509c7bccbdb3d2691ef186c445ea473185f7b Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Wed, 26 Feb 2025 11:02:24 +0530 Subject: [PATCH] update with header changes from cppyy-backend --- src/Cppyy.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Cppyy.h b/src/Cppyy.h index 13a6d07c..aae16258 100644 --- a/src/Cppyy.h +++ b/src/Cppyy.h @@ -289,6 +289,10 @@ namespace Cppyy { TCppMethod_t GetGlobalOperator(TCppType_t scope, const std::string &lc, const std::string &rc, const std::string &op); + CPPYY_IMPORT + void GetClassOperators(Cppyy::TCppScope_t klass, + const std::string& opname, + std::vector &operators); // method properties --------------------------------------------------------- CPPYY_IMPORT @@ -321,7 +325,8 @@ namespace Cppyy { TCppType_t GetType(const std::string& name, bool enable_slow_lookup = false); CPPYY_IMPORT bool AppendTypesSlow(const std::string &name, - std::vector& types); + std::vector& types, + bool no_reference=false); CPPYY_IMPORT TCppType_t GetComplexType(const std::string& element_type); CPPYY_IMPORT