Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-06-18 03:13:39 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-06-18 03:13:39 +0400
commit15f4eb34fa2f3bc511c513640b3eac2d03398f47 (patch)
treec565db6b05ac36219f664a6d69f1197f3b6885f9 /source/blender/editors/io/io_ops.c
parentc4eb9c7a7b327ab1ae7091baa6556859178f2b64 (diff)
Collada: Moved interface definitions from wm_operators.c to blender/editors/io
Diffstat (limited to 'source/blender/editors/io/io_ops.c')
-rwxr-xr-xsource/blender/editors/io/io_ops.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/source/blender/editors/io/io_ops.c b/source/blender/editors/io/io_ops.c
new file mode 100755
index 00000000000..ed9b134b546
--- /dev/null
+++ b/source/blender/editors/io/io_ops.c
@@ -0,0 +1,38 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * The Original Code is Copyright (C) 2008 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * Contributor(s): Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/editors/io/io_ops.c
+ * \ingroup collada
+ */
+
+#include "io_collada.h"
+
+void ED_operatortypes_io(void)
+{
+ // Collada operators:
+ WM_operatortype_append(WM_OT_collada_export);
+ WM_operatortype_append(WM_OT_collada_import);
+}