Blender  V2.93
io_ops.c
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) 2008 Blender Foundation.
17  * All rights reserved.
18  */
19 
24 #include "io_ops.h" /* own include */
25 
26 #include "WM_api.h"
27 
28 #ifdef WITH_COLLADA
29 # include "io_collada.h"
30 #endif
31 
32 #ifdef WITH_ALEMBIC
33 # include "io_alembic.h"
34 #endif
35 
36 #ifdef WITH_USD
37 # include "io_usd.h"
38 #endif
39 
40 #include "io_cache.h"
41 #include "io_gpencil.h"
42 
44 {
45 #ifdef WITH_COLLADA
46  /* Collada operators: */
49 #endif
50 #ifdef WITH_ALEMBIC
53 #endif
54 #ifdef WITH_USD
56 #endif
57 
59 
60 #ifdef WITH_PUGIXML
61  WM_operatortype_append(WM_OT_gpencil_export_svg);
62 #endif
63 
64 #ifdef WITH_HARU
65  WM_operatortype_append(WM_OT_gpencil_export_pdf);
66 #endif
67 
70 }
void WM_OT_alembic_import(struct wmOperatorType *ot)
void WM_OT_alembic_export(struct wmOperatorType *ot)
void CACHEFILE_OT_open(wmOperatorType *ot)
Definition: io_cache.c:120
void CACHEFILE_OT_reload(wmOperatorType *ot)
Definition: io_cache.c:155
void WM_OT_collada_import(struct wmOperatorType *ot)
void WM_OT_collada_export(struct wmOperatorType *ot)
void WM_OT_gpencil_import_svg(struct wmOperatorType *ot)
void ED_operatortypes_io(void)
Definition: io_ops.c:43
void WM_OT_usd_export(struct wmOperatorType *ot)
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))