Merge pull request #3361 from akva2/fielddata.hpp_reduce_hotness

FieldPropsManager.hpp: forward FieldData
This commit is contained in:
Bård Skaflestad 2023-01-16 14:53:17 +01:00 committed by GitHub
commit a47716e97c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 8 deletions

View File

@ -20,16 +20,19 @@
#define FIELDPROPS_MANAGER_HPP
#include <memory>
#include <vector>
#include <string>
#include <unordered_map>
#include <opm/input/eclipse/EclipseState/Grid/TranCalculator.hpp>
#include <opm/input/eclipse/EclipseState/Grid/FieldData.hpp>
#include <vector>
namespace Opm {
class EclipseGrid;
class Deck;
class DeckKeyword;
namespace Fieldprops {
template<typename T> struct FieldData;
}
class FieldProps;
class Phases;
class TableManager;

View File

@ -21,13 +21,10 @@
#define OPM_KEYWORDS_HPP
#include <optional>
#include <string>
namespace Opm
{
namespace Fieldprops
{
namespace Opm {
namespace Fieldprops {
namespace keywords {
template <typename T>
@ -72,7 +69,9 @@ struct keyword_info {
return *this;
}
};
} // end namespace Keywords
} // end namespace Fieldprops
} //end namespace Opm
#endif //OPM_KEYWORDS_HPP