Blender V4.3
tree_element_bone_collection.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11#include "tree_element.hh"
12
13struct bArmature;
14struct BoneCollection;
15
16namespace blender::ed::outliner {
17
19 bArmature &armature_;
20
21 public:
23 void expand(SpaceOutliner &) const override;
24};
25
27 bArmature &armature_;
28 BoneCollection &bcoll_;
29
30 public:
32 void expand(SpaceOutliner &) const override;
33};
34
35} // namespace blender::ed::outliner
TreeElementBoneCollectionBase(TreeElement &legacy_te, bArmature &armature)
TreeElementBoneCollection(TreeElement &legacy_te, bArmature &armature, BoneCollection &bcoll)