Add counter for numbering warning, error, proble, and bugs.

This commit is contained in:
Liu Ming
2016-01-04 17:09:16 +08:00
parent 2f19d0bba6
commit 6753c84547
2 changed files with 77 additions and 4 deletions

View File

@@ -81,6 +81,16 @@ namespace Opm {
SaturationFunctionFamily satFamily_;
struct Counter {
Counter();
int error;
int warning;
int problem;
int bug;
};
Counter counter_;
std::vector<Opm::EclEpsScalingPointsInfo<double> > unscaledEpsInfo_;
std::vector<Opm::EclEpsScalingPointsInfo<double> > scaledEpsInfo_;