Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-05-05 16:13:02 +0300
committerJacques Lucke <jacques@blender.org>2020-05-05 16:13:02 +0300
commit925166bed600fc418c7b9abef7194396b110458c (patch)
tree439ab34ec58f0bbbb32be0e7261d0dcfe02f285a /source/blender/blenkernel/BKE_node_tree_ref.hh
parentdd1a90353be9870fa37f10a379a197e6eeab982e (diff)
continue with derived node treenode-tree-ref
Diffstat (limited to 'source/blender/blenkernel/BKE_node_tree_ref.hh')
-rw-r--r--source/blender/blenkernel/BKE_node_tree_ref.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_node_tree_ref.hh b/source/blender/blenkernel/BKE_node_tree_ref.hh
index d9a9232906d..d48dbb3d60a 100644
--- a/source/blender/blenkernel/BKE_node_tree_ref.hh
+++ b/source/blender/blenkernel/BKE_node_tree_ref.hh
@@ -17,6 +17,7 @@
#ifndef __BKE_NODE_TREE_REF_HH__
#define __BKE_NODE_TREE_REF_HH__
+#include "BLI_array.hh"
#include "BLI_linear_allocator.hh"
#include "BLI_map.hh"
#include "BLI_string_map.hh"
@@ -32,9 +33,11 @@
namespace BKE {
+using BLI::Array;
using BLI::ArrayRef;
using BLI::LinearAllocator;
using BLI::Map;
+using BLI::MutableArrayRef;
using BLI::StringMap;
using BLI::StringRef;
using BLI::StringRefNull;
@@ -158,7 +161,7 @@ class NodeTreeRef : BLI::NonCopyable, BLI::NonMovable {
std::string to_dot() const;
private:
- /* Utility functions used by constructor. */
+ /* Utility functions used during construction. */
InputSocketRef &find_input_socket(Map<bNode *, NodeRef *> &node_mapping,
bNode *bnode,
bNodeSocket *bsocket);