just like for macros that start and end with `__`, `clang++ -Weverything` likes to complain about macros which start and end with a single underscore. This is basically the same issue as Ensembles/ert#1048
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
/*
|
|
Copyright 2015 Statoil 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 OPM_PINCHMODE_HPP
|
|
#define OPM_PINCHMODE_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace Opm {
|
|
|
|
namespace PinchMode {
|
|
enum ModeEnum {
|
|
ALL = 1,
|
|
TOPBOT = 2,
|
|
TOP = 3
|
|
};
|
|
|
|
const std::string PinchMode2String(const ModeEnum enumValue);
|
|
ModeEnum PinchModeFromString(const std::string& stringValue);
|
|
}
|
|
}
|
|
|
|
|
|
#endif // _PINCHMODE_
|