3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/pytriqs/pxd/shared_ptr.pxd

9 lines
189 B
Cython
Raw Normal View History

cdef extern from "<memory>" namespace "std" :
cdef cppclass shared_ptr "std::shared_ptr" [T] :
shared_ptr(T*)
shared_ptr()
T* get()
void reset (T*)