changed: hide the templated 'has' and 'get' interfaces in FieldPropsManager

motivation: an upcoming parallel frontend to the field props manager.
templated functions cannot be virtualized, and thus having these exposed
would give a great chance of confusing the users in the downstream
code, where properties would be caught from the (potentially) empty
backend instead of from the frontend.
This commit is contained in:
Arne Morten Kvarving
2020-01-27 15:29:43 +01:00
parent eed3c290b3
commit ae10af208f
17 changed files with 139 additions and 142 deletions

View File

@@ -235,7 +235,7 @@ struct Setup
BOOST_AUTO_TEST_CASE(ThresholdPressureDeckHasEqlnum) {
Setup s(inputStrWithEqlNum);
BOOST_CHECK(s.fp.has<int>("EQLNUM"));
BOOST_CHECK(s.fp.has_int("EQLNUM"));
}
BOOST_AUTO_TEST_CASE(ThresholdPressureTest) {