11 lines
200 B
Cython
11 lines
200 B
Cython
# distutils: language = c++
|
|
#cython: language_level=3
|
|
|
|
from .visionipc cimport VisionBuf as cppVisionBuf
|
|
|
|
cdef class VisionBuf:
|
|
cdef cppVisionBuf * buf
|
|
|
|
@staticmethod
|
|
cdef create(cppVisionBuf*)
|