(#404) WIP - Quad to segment mapper to determine well path depth

This commit is contained in:
Pål Hagen
2015-09-10 14:03:59 +02:00
parent f8dc3b4b81
commit ea2bb226d5
6 changed files with 78 additions and 4 deletions

View File

@@ -24,18 +24,20 @@
#include "cafPdmPointer.h"
class RimWellPath;
//class RivPipeQuadToSegmentMapper;
//==================================================================================================
///
///
/// TODO: Implement and add RivPipeQuadToSegmentMapper
//==================================================================================================
class RivWellPathSourceInfo : public cvf::Object
{
public:
RivWellPathSourceInfo(RimWellPath* wellPath);
RivWellPathSourceInfo(RimWellPath* wellPath/*, RivPipeQuadToSegmentMapper* quadToSegmentMapper*/);
RimWellPath* wellPath() const;
private:
caf::PdmPointer<RimWellPath> m_wellPath;
caf::PdmPointer<RimWellPath> m_wellPath;
//RivPipeQuadToSegmentMapper* m_quadToSegmentMapper;
};