Improve docs and naming for MdModulesNotifiers
[alexxy/gromacs.git] / src / gromacs / mdtypes / imdmodule.h
index 83283417b4873cfa1b0ef9d52d0c47db6725c25b..2f5dde528e93a6aca159a77f5826dd1955df19a2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2017,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2017,2019,2020,2021, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -51,7 +51,7 @@ namespace gmx
 class ForceProviders;
 class IMDOutputProvider;
 class IMdpOptionProvider;
-struct MdModulesNotifier;
+struct MDModulesNotifiers;
 
 /*! \libinternal \brief
  * Extension module for \Gromacs simulations.
@@ -75,9 +75,9 @@ public:
     //! Initializes force providers from this module.
     virtual void initForceProviders(ForceProviders* forceProviders) = 0;
     //! Subscribe to simulation setup notifications
-    virtual void subscribeToSimulationSetupNotifications(MdModulesNotifier* notifier) = 0;
+    virtual void subscribeToSimulationSetupNotifications(MDModulesNotifiers* notifiers) = 0;
     //! Subscribe to pre processing notifications
-    virtual void subscribeToPreProcessingNotifications(MdModulesNotifier* notifier) = 0;
+    virtual void subscribeToPreProcessingNotifications(MDModulesNotifiers* notifiers) = 0;
 };
 
 } // namespace gmx