File: std_memory.pxd

package info (click to toggle)
python-rocksdb 0.8.0~rc3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 480 kB
  • sloc: python: 798; cpp: 408; makefile: 158
file content (7 lines) | stat: -rw-r--r-- 253 bytes parent folder | download
1
2
3
4
5
6
7
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+