DeckKeyword: new constructor takes recordlist. DeckKeyword: invalid arg for wrong nr. of records. DeckValue: type_tag replaces DeckValueEnum. DeckValue: added as source for genkw. DeckValue: default is unknown type. DeckKeyword cosntr w/ record-lists works, but not for defaults. DeckKeyword: added function add_deckvalue. .. xx -- ... ... ... ... ... ... ... DeckValue: is<double> true also if integer. ... ... last commit .m
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
/*
|
|
Copyright 2019 Equinor ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DECK_VALUE_HPP
|
|
#define DECK_VALUE_HPP
|
|
|
|
#include <string>
|
|
|
|
#include <opm/parser/eclipse/Utility/Typetools.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
class DeckValue {
|
|
|
|
public:
|
|
DeckValue();
|
|
explicit DeckValue(int);
|
|
explicit DeckValue(double);
|
|
explicit DeckValue(const std::string&);
|
|
|
|
bool is_default() const;
|
|
|
|
template<typename T>
|
|
T get() const;
|
|
|
|
template<typename T>
|
|
bool is_compatible() const;
|
|
|
|
private:
|
|
|
|
bool default_value;
|
|
type_tag value_enum;
|
|
int int_value;
|
|
double double_value;
|
|
std::string string_value;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif
|