16 lines
521 B
Cython
16 lines
521 B
Cython
|
|
||
|
from libcpp.string cimport string
|
||
|
from array cimport cpp_MArray
|
||
|
|
||
|
cdef extern from "cereal/cnorxz_cereal.h" namespace "CNORXZ::cer":
|
||
|
cdef cppclass cpp_Format "CNORXZ::cer::Format":
|
||
|
pass
|
||
|
|
||
|
cdef extern from "cereal/cnorxz_cereal.h" namespace "CNORXZ::cer::Format":
|
||
|
cdef cpp_Format BINARY
|
||
|
cdef cpp_Format JSON
|
||
|
cdef cpp_Format XML
|
||
|
|
||
|
cdef extern from "cereal/cnorxz_cereal.h" namespace "CNORXZ::cer":
|
||
|
cdef void cpp_writeJSONFile "CNORXZ::cer::writeJSONFile" [T] (const string&, const cpp_MArray[T]&)
|