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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-31 15:59:06 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-31 15:59:06 +0400
commit6a6c23ecd8af6b1216975ad87b1602f618a7a5fd (patch)
tree06c19014d080eb7dec286790eb0d49b278ad3cd5 /source/blender/freestyle/intern/python/BPy_FrsMaterial.h
parentf09f89d5dcbc5532eeda9f54f0e1163373491083 (diff)
soc-2008-mxcurioni: moved namespace collision resolution to the freestyle_init.py (for Curve, Material and Noise)
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_FrsMaterial.h')
-rw-r--r--source/blender/freestyle/intern/python/BPy_FrsMaterial.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_FrsMaterial.h b/source/blender/freestyle/intern/python/BPy_FrsMaterial.h
deleted file mode 100644
index cb1aa20bb21..00000000000
--- a/source/blender/freestyle/intern/python/BPy_FrsMaterial.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef FREESTYLE_PYTHON_MATERIAL_H
-#define FREESTYLE_PYTHON_MATERIAL_H
-
-#include "../scene_graph/Material.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-///////////////////////////////////////////////////////////////////////////////////////////
-
-#include <Python.h>
-
-extern PyTypeObject FrsMaterial_Type;
-
-#define BPy_FrsMaterial_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &FrsMaterial_Type) )
-
-/*---------------------------Python BPy_FrsMaterial structure definition----------*/
-typedef struct {
- PyObject_HEAD
- Material *m;
-} BPy_FrsMaterial;
-
-/*---------------------------Python BPy_FrsMaterial visible prototypes-----------*/
-
-PyMODINIT_FUNC FrsMaterial_Init( PyObject *module );
-
-
-///////////////////////////////////////////////////////////////////////////////////////////
-
-#ifdef __cplusplus
-}
-#endif
-
-
-#endif /* FREESTYLE_PYTHON_MATERIAL_H */