lbry-rocksdb/rocksdb/std_memory.pxd

8 lines
183 B
Cython
Raw Normal View History

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