8 lines
183 B
Cython
8 lines
183 B
Cython
|
cdef extern from "<memory>" namespace "std":
|
||
|
cdef cppclass shared_ptr[T]:
|
||
|
shared_ptr()
|
||
|
shared_ptr(T*)
|
||
|
void reset()
|
||
|
void reset(T*)
|
||
|
T* get()
|