#ifndef COMPOSITE_SCHEME_OTHER_FLUXES_MODULE_HPP
#define COMPOSITE_SCHEME_OTHER_FLUXES_MODULE_HPP

#include <language/modules/BuiltinModule.hpp>

class CompositeSchemeOtherFluxesModule : public BuiltinModule
{
 public:
  std::string_view
  name() const final
  {
    return "composite_scheme_other_fluxes";
  }

  void registerOperators() const final;
  void registerCheckpointResume() const final;

  CompositeSchemeOtherFluxesModule();

  ~CompositeSchemeOtherFluxesModule() = default;
};

#endif   // COMPOSITE_SCHEME_OTHER_FLUXES_MODULE_HPP