[Cython] fixed missing includes in Cython wrapper headers

This commit is contained in:
Ray Speth 2013-03-04 17:31:38 +00:00
parent d4fb33c688
commit c896501f4a
2 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,9 @@
#define CT_CYTHON_FUNC_WRAPPER
#include "cantera/numerics/Func1.h"
#include "cantera/base/ctexceptions.h"
#include "Python.h"
typedef double(*callback_wrapper)(double, void*, void**);

View file

@ -1,6 +1,6 @@
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/transport/TransportBase.h"
#include "cantera/kinetics/Kinetics.h"
// Wrappers for preprocessor defines
std::string get_cantera_version()