Skip to content

Commit

Permalink
Add base reflection object to python reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
ccummingsNV committed Aug 12, 2024
1 parent 939b708 commit 952888c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sgl/device/python/reflection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ SGL_PY_EXPORT(device_reflection)
{
using namespace sgl;

nb::class_<BaseReflectionObject, Object> base_reflection(m, "BaseReflectionObject");

nb::class_<DeclReflection, BaseReflectionObject> decl_reflection(m, "DeclReflection");

nb::sgl_enum<DeclReflection::Kind>(decl_reflection, "Kind");
Expand Down

0 comments on commit 952888c

Please sign in to comment.