diff --git a/src/opac/public/opac.h b/src/opac/public/opac.h new file mode 100644 index 0000000..3d71c2c --- /dev/null +++ b/src/opac/public/opac.h @@ -0,0 +1,23 @@ +#ifndef OPAC_H +#define OPAC_H + +#include +#include +#include "DObject.h" + +/** + * @breif initlaize the opacity module + * @param args: a hash map of all arguments needed to intialize opac + * @return error code in a DObject +**/ +DObject initlaize_opac(const std::map& args); + + +/** + * @breif opacity given a temperature, density, and composition + * @param args: a hash map of all arguments needed to calculate opac + * @return error code in a DObject +**/ +DObject + +#endif