After 22f641e7f8, translation macros were removed and thus in many
files inclusion of the translation header is no longer needed.
Pull Request: https://projects.blender.org/blender/blender/pulls/107986
27 lines
519 B
C++
27 lines
519 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#include <string.h>
|
|
|
|
#include "BLI_math_vector.hh"
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "DNA_node_types.h"
|
|
|
|
#include "BKE_node.hh"
|
|
|
|
#include "NOD_multi_function.hh"
|
|
#include "NOD_socket_declarations.hh"
|
|
|
|
#include "node_function_register.hh"
|
|
#include "node_util.hh"
|
|
|
|
#include "FN_multi_function_builder.hh"
|
|
|
|
#include "RNA_access.h"
|
|
|
|
void fn_node_type_base(struct bNodeType *ntype, int type, const char *name, short nclass);
|