Change naming convention for C++ interfaces
[alexxy/gromacs.git] / src / gromacs / commandline / cmdlineinit.cpp
index 49786a1033c78dce1cce4dda3b3fc1120311ca5d..6652cbdd35dc2befa243b23308ff52ac9f5d102c 100644 (file)
@@ -158,16 +158,16 @@ int processExceptionAtExitForCommandLine(const std::exception &ex)
 }
 
 int runCommandLineModule(int argc, char *argv[],
-                         CommandLineModuleInterface *module)
+                         ICommandLineModule *module)
 {
     return CommandLineModuleManager::runAsMainSingleModule(argc, argv, module);
 }
 
 int runCommandLineModule(int argc, char *argv[],
                          const char *name, const char *description,
-                         CommandLineOptionsModuleInterface *(*factory)())
+                         ICommandLineOptionsModule *(*factory)())
 {
-    return CommandLineOptionsModuleInterface::runAsMain(
+    return ICommandLineOptionsModule::runAsMain(
             argc, argv, name, description, factory);
 }