[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52604] trunk/blender/source/blender/ python/bmesh: add empty files (will move bmesh operator calling here)

Campbell Barton ideasman42 at gmail.com
Tue Nov 27 14:45:29 CET 2012


Revision: 52604
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52604
Author:   campbellbarton
Date:     2012-11-27 13:45:28 +0000 (Tue, 27 Nov 2012)
Log Message:
-----------
add empty files (will move bmesh operator calling here)

Modified Paths:
--------------
    trunk/blender/source/blender/python/bmesh/CMakeLists.txt

Added Paths:
-----------
    trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.c
    trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.h

Modified: trunk/blender/source/blender/python/bmesh/CMakeLists.txt
===================================================================
--- trunk/blender/source/blender/python/bmesh/CMakeLists.txt	2012-11-27 11:38:59 UTC (rev 52603)
+++ trunk/blender/source/blender/python/bmesh/CMakeLists.txt	2012-11-27 13:45:28 UTC (rev 52604)
@@ -34,6 +34,7 @@
 set(SRC
 	bmesh_py_api.c
 	bmesh_py_ops.c
+	bmesh_py_ops_call.c
 	bmesh_py_types.c
 	bmesh_py_types_customdata.c
 	bmesh_py_types_meshdata.c
@@ -42,6 +43,7 @@
 
 	bmesh_py_api.h
 	bmesh_py_ops.h
+	bmesh_py_ops_call.h
 	bmesh_py_types.h
 	bmesh_py_types_customdata.h
 	bmesh_py_types_meshdata.h

Added: trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.c
===================================================================
--- trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.c	                        (rev 0)
+++ trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.c	2012-11-27 13:45:28 UTC (rev 52604)
@@ -0,0 +1,28 @@
+/*
+ * ***** 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) 2012 Blender Foundation.
+ * All rights reserved.
+ *
+ * Contributor(s): Campbell Barton
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/python/bmesh/bmesh_py_ops_call.c
+ *  \ingroup pybmesh
+ */


Property changes on: trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.c
___________________________________________________________________
Added: svn:eol-style
   + native

Added: trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.h
===================================================================
--- trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.h	                        (rev 0)
+++ trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.h	2012-11-27 13:45:28 UTC (rev 52604)
@@ -0,0 +1,33 @@
+/*
+ * ***** 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) 2012 Blender Foundation.
+ * All rights reserved.
+ *
+ * Contributor(s): Campbell Barton
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/python/bmesh/bmesh_py_ops_call.h
+ *  \ingroup pybmesh
+ */
+
+#ifndef __BMESH_PY_OPS_CALL_H__
+#define __BMESH_PY_OPS_CALL_H__
+
+#endif /* __BMESH_PY_OPS_CALL_H__ */


Property changes on: trunk/blender/source/blender/python/bmesh/bmesh_py_ops_call.h
___________________________________________________________________
Added: svn:eol-style
   + native




More information about the Bf-blender-cvs mailing list