molecule.h 729 B

123456789101112131415161718192021222324252627282930313233
  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 API_MOLECULE_H
  12. #define API_MOLECULE_H
  13. #include "generated/gen_molecule.h"
  14. #include "api/api_common.h"
  15. #include "api/species.h"
  16. namespace MCell {
  17. namespace API {
  18. class Molecule: public GenMolecule {
  19. public:
  20. MOLECULE_CTOR_NOARGS()
  21. void remove() override;
  22. };
  23. } // namespace API
  24. } // namespace MCell
  25. #endif // API_MOLECULE_H