Blender  V2.93
deg_node_factory.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version 2
5  * of the License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software Foundation,
14  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15  *
16  * The Original Code is Copyright (C) 2019 Blender Foundation.
17  * All rights reserved.
18  */
19 
24 #pragma once
25 
26 #include "MEM_guardedalloc.h"
27 
28 #include "intern/depsgraph_type.h"
29 #include "intern/node/deg_node.h"
30 
31 struct ID;
32 
33 namespace blender {
34 namespace deg {
35 
37  virtual NodeType type() const = 0;
38  virtual const char *type_name() const = 0;
39 
40  virtual int id_recalc_tag() const = 0;
41 
42  virtual Node *create_node(const ID *id, const char *subdata, const char *name) const = 0;
43 };
44 
45 template<class ModeObjectType> struct DepsNodeFactoryImpl : public DepsNodeFactory {
46  virtual NodeType type() const override;
47  virtual const char *type_name() const override;
48 
49  virtual int id_recalc_tag() const override;
50 
51  virtual Node *create_node(const ID *id, const char *subdata, const char *name) const override;
52 };
53 
54 /* Register typeinfo */
56 
57 /* Get typeinfo for specified type */
59 
60 } // namespace deg
61 } // namespace blender
62 
_GL_VOID GLfloat value _GL_VOID_RET _GL_VOID const GLuint GLboolean *residences _GL_BOOL_RET _GL_VOID GLsizei GLfloat GLfloat GLfloat GLfloat const GLubyte *bitmap _GL_VOID_RET _GL_VOID GLenum type
Read Guarded memory(de)allocation.
void register_node_typeinfo(DepsNodeFactory *factory)
DepsNodeFactory * type_get_factory(const NodeType type)
Definition: DNA_ID.h:273
virtual Node * create_node(const ID *id, const char *subdata, const char *name) const override
virtual const char * type_name() const override
virtual NodeType type() const override
virtual int id_recalc_tag() const override
virtual NodeType type() const =0
virtual Node * create_node(const ID *id, const char *subdata, const char *name) const =0
virtual const char * type_name() const =0
virtual int id_recalc_tag() const =0