2014-01-13 19:52:22 +01:00
|
|
|
cdef extern from "<memory>" namespace "std":
|
|
|
|
cdef cppclass shared_ptr[T]:
|
2014-01-17 20:06:17 +01:00
|
|
|
shared_ptr() nogil except+
|
|
|
|
shared_ptr(T*) nogil except+
|
|
|
|
void reset() nogil except+
|
|
|
|
void reset(T*) nogil except+
|
|
|
|
T* get() nogil except+
|