summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/wrapping_CPlusPlus/rect_ptr.pyx
blob: 0c48689e765bc839aedea11835d487a5beccf0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# distutils: language = c++

from Rectangle cimport Rectangle

cdef class PyRectangle:
    cdef Rectangle*c_rect  # hold a pointer to the C++ instance which we're wrapping

    def __cinit__(self, int x0, int y0, int x1, int y1):
        self.c_rect = new Rectangle(x0, y0, x1, y1)

    def __dealloc__(self):
        del self.c_rect