prepare for adding bmesh py api for customdata layer access - no functional changes.

This commit is contained in:
2012-03-15 06:08:27 +00:00
parent f53888c5cc
commit 6ed9c58a3d
5 changed files with 11 additions and 9 deletions

View File

@@ -33,13 +33,15 @@ set(INC_SYS
set(SRC
bmesh_py_api.c
bmesh_py_select.c
bmesh_py_types.c
bmesh_py_types_customdata.c
bmesh_py_types_select.c
bmesh_py_utils.c
bmesh_py_api.h
bmesh_py_select.h
bmesh_py_types.h
bmesh_py_types_customdata.h
bmesh_py_types_select.h
bmesh_py_utils.h
)

View File

@@ -34,8 +34,8 @@
#include "bmesh.h"
#include "bmesh_py_types.h"
#include "bmesh_py_types_select.h"
#include "bmesh_py_utils.h"
#include "bmesh_py_select.h"
#include "BLI_utildefines.h"

View File

@@ -44,8 +44,8 @@
#include "../generic/py_capi_utils.h"
#include "bmesh_py_select.h"
#include "bmesh_py_types.h" /* own include */
#include "bmesh_py_types_select.h"
/* Common Flags
* ************ */

View File

@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/python/bmesh/bmesh_py_select.c
/** \file blender/python/bmesh/bmesh_py_types_select.c
* \ingroup pybmesh
*
* This file defines the types for 'BMesh.select_history'
@@ -38,7 +38,7 @@
#include "bmesh.h"
#include "bmesh_py_types.h"
#include "bmesh_py_select.h"
#include "bmesh_py_types_select.h"
#include "BLI_utildefines.h"
#include "BLI_listbase.h"

View File

@@ -23,12 +23,12 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/python/bmesh/bmesh_py_select.h
/** \file blender/python/bmesh/bmesh_py_types_select.h
* \ingroup pybmesh
*/
#ifndef __BMESH_PY_SELECT_H__
#define __BMESH_PY_SELECT_H__
#ifndef __BMESH_PY_TYPES_SELECT_H__
#define __BMESH_PY_TYPES_SELECT_H__
struct BPy_BMesh;