[Python] Fix function signatures

This commit is contained in:
Ingmar Schoegl 2023-08-12 10:08:29 -05:00
parent 0d0fd86d2d
commit b45151cf90

View File

@ -35,8 +35,8 @@ cdef extern from "cantera/kinetics/Kinetics.h" namespace "Cantera":
void addThermo(shared_ptr[CxxThermoPhase]) except +translate_exception void addThermo(shared_ptr[CxxThermoPhase]) except +translate_exception
void init() except +translate_exception void init() except +translate_exception
void skipUndeclaredThirdBodies(cbool) void skipUndeclaredThirdBodies(cbool)
void addReaction(shared_ptr[CxxReaction]) except +translate_exception cbool addReaction(shared_ptr[CxxReaction]) except +translate_exception
void addReaction(shared_ptr[CxxReaction], cbool) except +translate_exception cbool addReaction(shared_ptr[CxxReaction], cbool) except +translate_exception
void modifyReaction(int, shared_ptr[CxxReaction]) except +translate_exception void modifyReaction(int, shared_ptr[CxxReaction]) except +translate_exception
void invalidateCache() except +translate_exception void invalidateCache() except +translate_exception
void resizeReactions() void resizeReactions()