Change naming convention for C++ interfaces
[alexxy/gromacs.git] / src / gromacs / legacyheaders / oenv.h
index ade929e0815d51ed514701487a6ebe453b1248c0..f12bfed2767f2b35f6255e7b0901a799e59e10e8 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2012,2014, by the GROMACS development team, led by
+ * Copyright (c) 2012,2014,2015, 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.
@@ -117,11 +117,11 @@ const char *output_env_get_program_display_name(const output_env_t oenv);
 
 namespace gmx
 {
-class ProgramContextInterface;
+class IProgramContext;
 } // namespace gmx
 
 void output_env_init(output_env_t *oenvp,
-                     const gmx::ProgramContextInterface &context,
+                     const gmx::IProgramContext &context,
                      time_unit_t tmu, gmx_bool view, xvg_format_t xvg_format,
                      int verbosity);
 /* initialize an output_env structure, setting the command line,
@@ -130,9 +130,9 @@ void output_env_init(output_env_t *oenvp,
    the graph formatting type, the verbosity, and debug level */
 
 /*! \brief
- * Returns gmx::ProgramContextInterface from an output_env structure.
+ * Returns gmx::IProgramContext from an output_env structure.
  */
-const gmx::ProgramContextInterface &
+const gmx::IProgramContext &
 output_env_get_program_context(const output_env_t oenv);
 
 #endif