Blender V4.5
NOD_socket_interface_key.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2025 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#pragma once
6
7#include <string>
8
9#include "BLI_vector.hh"
10
11namespace blender::nodes {
12
20 private:
22 Vector<std::string> identifiers_;
23
24 public:
26 explicit SocketInterfaceKey(std::string identifier);
27
28 bool matches(const SocketInterfaceKey &other) const;
30};
31
32} // namespace blender::nodes
bool matches(const SocketInterfaceKey &other) const