lbry-rocksdb/rocksdb/std_memory.pxd
2014-01-13 19:52:22 +01:00

7 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()