Fix missing includes

This commit is contained in:
Magne Sjaastad 2021-06-29 19:09:12 +02:00
parent a3d5847733
commit 4e45f397e8
2 changed files with 9 additions and 2 deletions

View File

@ -28,7 +28,7 @@
///
//--------------------------------------------------------------------------------------------------
void RimWellPathGeometryDefTools::updateLinkedGeometryDefinitions( std::vector<RimWellPathGeometryDef*>& definitions,
cvf::Vec3d delta )
const cvf::Vec3d& delta )
{
for ( auto wellPathGeoDef : definitions )
{

View File

@ -17,10 +17,17 @@
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "cvfVector3.h"
#include <vector>
class RimWellPathGeometryDef;
class RimWellPathGeometryDefTools
{
public:
static void updateLinkedGeometryDefinitions( std::vector<RimWellPathGeometryDef*>& definitions, cvf::Vec3d delta );
static void updateLinkedGeometryDefinitions( std::vector<RimWellPathGeometryDef*>& definitions,
const cvf::Vec3d& delta );
static std::vector<RimWellPathGeometryDef*> linkedDefinitions();
};