mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-22 15:33:29 -06:00
20 lines
306 B
C++
20 lines
306 B
C++
/*
|
|
* File: WellsGroup.cpp
|
|
* Author: kjetilo
|
|
*
|
|
* Created on March 27, 2012, 9:27 AM
|
|
*/
|
|
|
|
#include "WellsGroup.hpp"
|
|
namespace Opm {
|
|
WellsGroupInterface::AbstractWellsGroup() {
|
|
}
|
|
|
|
WellsGroupInterface::~WellsGroupInterface() {
|
|
}
|
|
|
|
const std::string& WellsGroupInterface::name() {
|
|
return name_;
|
|
}
|
|
}
|
|
} |