units_wrapper.h 594 B
#ifndef __PYSWIFTSIM_UNITS_H__
#define __PYSWIFTSIM_UNITS_H__
#include <Python.h>
/**
* @brief Test function for the struct
*
* args is expecting no argument.
*
* @param self calling object
* @param args arguments
* @return UnitSystem
*/
PyObject* pyunit_system_test_struct(PyObject *self, PyObject *args);
/**
* @brief Initialize the unit system
*
* args is expecting a pyswift SwiftParms object.
*
* @param self calling object
* @param args arguments
* @return UnitSystem
*/
PyObject* pyunit_system_init(PyObject *self, PyObject *args);
#endif // __PYSWIFTSIM_UNITS_H__