lbry-rocksdb/rocksdb/std_memory.pxd

8 lines
253 B
Cython
Raw Permalink Normal View History

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