From b0ee6fa2c1b7cefd9dc6b193a15956c8dda8d220 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Fri, 31 Aug 2018 12:47:45 +0200 Subject: [PATCH] [io] change from `IOFieldNames` to `IOName` See discussion in !1212. --- dumux/io/{fieldnames.hh => name.hh} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename dumux/io/{fieldnames.hh => name.hh} (97%) diff --git a/dumux/io/fieldnames.hh b/dumux/io/name.hh similarity index 97% rename from dumux/io/fieldnames.hh rename to dumux/io/name.hh index 447251e55e..c5d28f2e3c 100644 --- a/dumux/io/fieldnames.hh +++ b/dumux/io/name.hh @@ -21,13 +21,13 @@ * \ingroup InputOutput * \brief A collection of input/output field names for common physical quantities */ -#ifndef DUMUX_IO_FIELD_NAMES_HH -#define DUMUX_IO_FIELD_NAMES_HH +#ifndef DUMUX_IO_NAME_HH +#define DUMUX_IO_NAME_HH #include <string> namespace Dumux { -namespace IOFieldNames { +namespace IOName { //! name of variable pressure template<class FluidSystem> @@ -110,7 +110,7 @@ template<class SolidSystem> std::string solidVolumeFraction(int compIdx = 0) noexcept { return "precipitateVolumeFraction^" + SolidSystem::componentName(compIdx); } -} // end namespace IOFieldNames +} // end namespace IOName } // end namespace Dumux #endif -- GitLab