From aaa02984d3978bcf94d9a98d1ac9139d5fbfca2d Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Thu, 3 Dec 2020 10:34:09 -0700 Subject: Cleanup: Outliner scenes display mode No functional changes. The scene display building code has been moved to C++. Differential Revision: https://developer.blender.org/D9741 --- source/blender/editors/space_outliner/tree/tree_display.hh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source/blender/editors/space_outliner/tree/tree_display.hh') diff --git a/source/blender/editors/space_outliner/tree/tree_display.hh b/source/blender/editors/space_outliner/tree/tree_display.hh index a933a8d7609..4a2559d94ab 100644 --- a/source/blender/editors/space_outliner/tree/tree_display.hh +++ b/source/blender/editors/space_outliner/tree/tree_display.hh @@ -150,4 +150,17 @@ class TreeDisplayIDOrphans final : public AbstractTreeDisplay { bool datablock_has_orphans(ListBase &) const; }; +/* -------------------------------------------------------------------- */ +/* Scenes Tree-Display */ + +/** + * \brief Tree-Display for the Scenes display mode + */ +class TreeDisplayScenes final : public AbstractTreeDisplay { + public: + TreeDisplayScenes(SpaceOutliner &space_outliner); + + ListBase buildTree(const TreeSourceData &source_data) override; +}; + } // namespace blender::ed::outliner -- cgit v1.2.3