Readd definition of WellsManager constructor from wells.

As @bska pointed in my issue #518 this definition was
accidentally removed in commit 20468d1 during a merge of
upstream changes. Therefore I readd it with this patch.
This commit is contained in:
Markus Blatt 2014-03-29 10:12:40 +01:00
parent c282949400
commit 0c96066a79

View File

@ -231,6 +231,12 @@ namespace Opm
{
}
/// Construct from existing wells object.
WellsManager::WellsManager(struct Wells* W)
: w_(clone_wells(W))
{
}
/// Construct wells from deck.
WellsManager::WellsManager(const Opm::EclipseStateConstPtr eclipseState,
const size_t timeStep,