Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/scene_graph/SceneVisitor.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| * \brief Class to visit (without doing anything) a scene graph structure | * \brief Class to visit (without doing anything) a scene graph structure | ||||
| */ | */ | ||||
| #include "../system/FreestyleConfig.h" | |||||
| #ifdef WITH_CXX_GUARDEDALLOC | #ifdef WITH_CXX_GUARDEDALLOC | ||||
| # include "MEM_guardedalloc.h" | # include "MEM_guardedalloc.h" | ||||
| #endif | #endif | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| #define VISIT_COMPLETE_DEF(type) \ | #define VISIT_COMPLETE_DEF(type) \ | ||||
| virtual void visit##type(type &) \ | virtual void visit##type(type &) \ | ||||
| ▲ Show 20 Lines • Show All 79 Lines • Show Last 20 Lines | |||||