bindings.h 665 B

123456789101112131415161718192021222324252627
  1. /******************************************************************************
  2. *
  3. * Copyright (C) 2020 by
  4. * The Salk Institute for Biological Studies
  5. *
  6. * Use of this source code is governed by an MIT-style
  7. * license that can be found in the LICENSE file or at
  8. * https://opensource.org/licenses/MIT.
  9. *
  10. ******************************************************************************/
  11. #ifndef LIBMCELL_API_BINDINGS_H
  12. #define LIBMCELL_API_BINDINGS_H
  13. namespace MCell {
  14. namespace API {
  15. // used to detect Ctrl-C signal from the user,
  16. // throws an exception if so
  17. void check_ctrl_c(const double current_time, World* arg);
  18. }
  19. }
  20. #endif // LIBMCELL_API_BINDINGS_H