added openmc_remove_tally_from_tallies to C++ API

in tally.py
This commit is contained in:
lewisgross1296 2022-08-10 15:44:00 -05:00
parent 8140ff492c
commit 9d146a3e0f

View file

@ -87,6 +87,9 @@ _dll.openmc_tally_set_type.errcheck = _error_handler
_dll.openmc_tally_set_writable.argtypes = [c_int32, c_bool]
_dll.openmc_tally_set_writable.restype = c_int
_dll.openmc_tally_set_writable.errcheck = _error_handler
_dll.openmc_remove_tally_from_tallies.argtypes = [c_int32]
_dll.openmc_remove_tally_from_tallies.restype = None
_dll.openmc_remove_tally_from_tallies.errcheck = _error_handler
_dll.tallies_size.restype = c_size_t