Commit 19dcd80 1 parent e440c1c commit 19dcd80 Copy full SHA for 19dcd80
File tree 2 files changed +6
-0
lines changed
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) {
463
463
return Cpp::IsRecordType (type);
464
464
}
465
465
466
+ bool Cppyy::IsFunctionPointerType (TCppType_t type) {
467
+ return Cpp::IsFunctionPointerType (type);
468
+ }
469
+
466
470
// returns true if no new type was added.
467
471
bool Cppyy::AppendTypesSlow (const std::string &name,
468
472
std::vector<Cpp::TemplateArgInfo>& types) {
Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ namespace Cppyy {
84
84
RPY_EXPORTED
85
85
bool IsClassType (TCppType_t type);
86
86
RPY_EXPORTED
87
+ bool IsFunctionPointerType (TCppType_t type);
88
+ RPY_EXPORTED
87
89
TCppType_t GetType (const std::string &name, bool enable_slow_lookup = false );
88
90
RPY_EXPORTED
89
91
bool AppendTypesSlow (const std::string &name,
You can’t perform that action at this time.
0 commit comments