(#541) Added interface for adding well info for export

This commit is contained in:
Pål Hagen 2015-10-16 11:02:12 +02:00
parent bcb4919f3d
commit 7bcbb80691
2 changed files with 6 additions and 0 deletions

View File

@ -579,3 +579,8 @@ void NRLib::LasWell::setStopDepth(double stopDepth)
{
stop_depth_ = stopDepth;
}
void NRLib::LasWell::addWellInfo(const std::string& wellInfo)
{
well_info_.push_back(wellInfo);
}

View File

@ -61,6 +61,7 @@ public:
void setVersionInfo(const std::string& logName);
void setStartDepth(double startDepth);
void setStopDepth(double stopDepth);
void addWellInfo(const std::string& wellInfo);
private:
void ReadHeader(const std::string & filename,