//=========================================================================== // // File: ParameterStrings.hpp // // Created: Tue Jun 2 19:04:15 2009 // // Author(s): Bård Skaflestad // Atgeirr F Rasmussen // // $Date$ // // $Revision$ // //=========================================================================== /* Copyright 2009, 2010 SINTEF ICT, Applied Mathematics. Copyright 2009, 2010 Statoil ASA. This file is part of The Open Reservoir Simulator Project (OpenRS). OpenRS is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenRS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenRS. If not, see . */ #ifndef OPENRS_PARAMETERSTRINGS_HEADER #define OPENRS_PARAMETERSTRINGS_HEADER #include namespace Opm { namespace parameter { const std::string ID_true = "true"; const std::string ID_false = "false"; const std::string ID_xmltag__param_grp = "ParameterGroup"; const std::string ID_xmltag__param = "Parameter"; const std::string ID_xmltag__file_param_grp = "ParameterGroupFromFile"; const std::string ID_xmltag__file_params = "MergeWithFile"; const std::string ID_xmlatt__value = "value"; const std::string ID_xmlatt__name = "name"; const std::string ID_xmlatt__type = "type"; const std::string ID_param_type__bool = "bool"; const std::string ID_param_type__int = "int"; const std::string ID_param_type__float = "double"; const std::string ID_param_type__string = "string"; const std::string ID_param_type__file = "file"; const std::string ID_param_type__cmdline = "cmdline"; // const std::string ID_path_root = ""; const std::string ID_delimiter_path = "/"; const std::string ID_comment = "//"; const std::string ID_delimiter_assignment = "="; } // namespace parameter } // namespace Opm #endif // OPENRS_PARAMETERSTRINGS_HEADER