From d9393a2d2be43991630d9ebf2ca2fce1156470e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Mon, 18 May 2020 16:16:26 +0200 Subject: [PATCH] Add WalkReturn enumeration. --- src/runner/pythonrunner.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index dee49ea..89bf571 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -335,6 +335,13 @@ BOOST_PYTHON_MODULE(mobase) .export_values() ; + bpy::enum_("WalkReturn") + .value("CONTINUE", IFileTree::WalkReturn::CONTINUE) + .value("STOP", IFileTree::WalkReturn::STOP) + .value("SKIP", IFileTree::WalkReturn::SKIP) + .export_values() + ; + iFileTreeClass // Non-mutable operations: