diff options
Diffstat (limited to 'include/chillmodule.hh')
-rw-r--r-- | include/chillmodule.hh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/chillmodule.hh b/include/chillmodule.hh new file mode 100644 index 0000000..e83119f --- /dev/null +++ b/include/chillmodule.hh @@ -0,0 +1,17 @@ +#ifndef CHILLMODULE_HH +#define CHILLMODULE_HH + +/*! + * \file + * \brief chill interface to python + */ + +#include <Python.h> + +void finalize_loop(int loop_num_start, int loop_num_end); +int get_loop_num_start(); +int get_loop_num_end(); +//! pass C methods to python +PyMODINIT_FUNC initchill(); + +#endif |