mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 19:42:07 +08:00
5033da5e27
* Added cython bindings for model runners and commonmodel * Removed cython language_level=3 * loop to set CXXFLAGS for both envs old-commit-hash: e2e39d100b32a6706e83c81a1ef3dcdd7ea4001f
7 lines
125 B
Cython
7 lines
125 B
Cython
# distutils: language = c++
|
|
|
|
from .runmodel cimport RunModel as cppRunModel
|
|
|
|
cdef class RunModel:
|
|
cdef cppRunModel * model
|