File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,10 @@ bool Cppyy::IsClassType(TCppType_t type) {
463463 return Cpp::IsRecordType (type);
464464}
465465
466+ bool Cppyy::IsFunctionPointerType (TCppType_t type) {
467+ return Cpp::IsFunctionPointerType (type);
468+ }
469+
466470// returns true if no new type was added.
467471bool Cppyy::AppendTypesSlow (const std::string &name,
468472 std::vector<Cpp::TemplateArgInfo>& types) {
Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ namespace Cppyy {
8484 RPY_EXPORTED
8585 bool IsClassType (TCppType_t type);
8686 RPY_EXPORTED
87+ bool IsFunctionPointerType (TCppType_t type);
88+ RPY_EXPORTED
8789 TCppType_t GetType (const std::string &name, bool enable_slow_lookup = false );
8890 RPY_EXPORTED
8991 bool AppendTypesSlow (const std::string &name,
You can’t perform that action at this time.
0 commit comments