aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libother/otherobjecttype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libother/otherobjecttype.cpp')
-rw-r--r--sources/shiboken2/tests/libother/otherobjecttype.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/sources/shiboken2/tests/libother/otherobjecttype.cpp b/sources/shiboken2/tests/libother/otherobjecttype.cpp
index ca356ce94..1f782ecd8 100644
--- a/sources/shiboken2/tests/libother/otherobjecttype.cpp
+++ b/sources/shiboken2/tests/libother/otherobjecttype.cpp
@@ -34,3 +34,13 @@ operator<<(Collector& collector, const OtherObjectType& obj)
collector << obj.identifier()*2;
return collector;
}
+
+int OtherObjectType::enumAsInt(SampleNamespace::SomeClass::PublicScopedEnum value)
+{
+ return static_cast<int>(value);
+}
+
+int OtherObjectType::enumAsIntForInvisibleNamespace(Invisible::EnumOnNamespace value)
+{
+ return static_cast<int>(value);
+}