Differential D10351 Diff 33677 source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h
| Show All 32 Lines | |||||
| extern PyTypeObject ChainingIterator_Type; | extern PyTypeObject ChainingIterator_Type; | ||||
| #define BPy_ChainingIterator_Check(v) \ | #define BPy_ChainingIterator_Check(v) \ | ||||
| (PyObject_IsInstance((PyObject *)v, (PyObject *)&ChainingIterator_Type)) | (PyObject_IsInstance((PyObject *)v, (PyObject *)&ChainingIterator_Type)) | ||||
| /*---------------------------Python BPy_ChainingIterator structure definition----------*/ | /*---------------------------Python BPy_ChainingIterator structure definition----------*/ | ||||
| typedef struct { | typedef struct { | ||||
| BPy_ViewEdgeIterator py_ve_it; | BPy_ViewEdgeIterator py_ve_it; | ||||
| ChainingIterator *c_it; | Freestyle::ChainingIterator *c_it; | ||||
| } BPy_ChainingIterator; | } BPy_ChainingIterator; | ||||
| /////////////////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////////////////// | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||