GlobalWellInfo.hpp: remove unnecessary Well.hpp include

This commit is contained in:
Arne Morten Kvarving 2023-01-18 11:24:02 +01:00
parent f109718242
commit d091858f46

View File

@ -25,12 +25,13 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <opm/input/eclipse/Schedule/Well/Well.hpp>
namespace Opm { namespace Opm {
class Schedule; class Schedule;
class Well; class Well;
enum class WellInjectorCMode;
enum class WellProducerCMode;
enum class WellStatus;
/* /*
@ -71,8 +72,8 @@ public:
bool in_injecting_group(const std::string& wname) const; bool in_injecting_group(const std::string& wname) const;
std::size_t well_index(const std::string& wname) const; std::size_t well_index(const std::string& wname) const;
const std::string& well_name(std::size_t well_index) const; const std::string& well_name(std::size_t well_index) const;
void update_injector(std::size_t well_index, Well::Status well_status, Well::InjectorCMode injection_cmode); void update_injector(std::size_t well_index, WellStatus well_status, WellInjectorCMode injection_cmode);
void update_producer(std::size_t well_index, Well::Status well_status, Well::ProducerCMode production_cmode); void update_producer(std::size_t well_index, WellStatus well_status, WellProducerCMode production_cmode);
void clear(); void clear();
private: private: