Files
test/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.h
2022-07-19 11:40:18 +02:00

33 lines
758 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2015 Blender Foundation. All rights reserved. */
/** \file
* \ingroup depsgraph
*/
#pragma once
#include "intern/depsgraph_type.h"
namespace blender::deg {
struct RootPChanMap {
/** Debug contents of map. */
void print_debug();
/** Add a mapping. */
void add_bone(const char *bone, const char *root);
/** Check if there's a common root bone between two bones. */
bool has_common_root(const char *bone1, const char *bone2) const;
protected:
/**
* The strings are only referenced by this map. Users of RootPChanMap have to make sure that the
* life-time of the strings is long enough.
*/
Map<StringRefNull, Set<StringRefNull>> map_;
};
} // namespace blender::deg