mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Remove unused file
This commit is contained in:
parent
dd004c7051
commit
64395e8aa3
@ -50,7 +50,6 @@ ${CMAKE_CURRENT_LIST_DIR}/RivAnnotationsPartMgr.h
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationPartMgr.h
|
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationPartMgr.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationPartMgr.h
|
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationPartMgr.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylineAnnotationPartMgr.h
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylineAnnotationPartMgr.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationSourceInfo.h
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationSourceInfo.h
|
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationSourceInfo.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylinesAnnotationSourceInfo.h
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylinesAnnotationSourceInfo.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylineGenerator.h
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylineGenerator.h
|
||||||
@ -104,7 +103,6 @@ ${CMAKE_CURRENT_LIST_DIR}/RivAnnotationsPartMgr.cpp
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationPartMgr.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationPartMgr.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationPartMgr.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationPartMgr.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylineAnnotationPartMgr.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylineAnnotationPartMgr.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivTextAnnotationSourceInfo.cpp
|
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationSourceInfo.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivReachCircleAnnotationSourceInfo.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylinesAnnotationSourceInfo.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylinesAnnotationSourceInfo.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RivPolylineGenerator.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RivPolylineGenerator.cpp
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Copyright (C) 2018- Equinor ASA
|
|
||||||
//
|
|
||||||
// ResInsight is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
//
|
|
||||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
||||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
||||||
//
|
|
||||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
||||||
// for more details.
|
|
||||||
//
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#include "RivTextAnnotationSourceInfo.h"
|
|
||||||
|
|
||||||
#include "RimTextAnnotation.h"
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
///
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
RivTextAnnotationSourceInfo::RivTextAnnotationSourceInfo(RimTextAnnotation* annotation)
|
|
||||||
: RivObjectSourceInfo(annotation)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
///
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
RimTextAnnotation* RivTextAnnotationSourceInfo::annotation() const
|
|
||||||
{
|
|
||||||
return dynamic_cast<RimTextAnnotation*>( this->object() );
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Copyright (C) 2018- Equinor ASA
|
|
||||||
//
|
|
||||||
// ResInsight is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
//
|
|
||||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
||||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
||||||
//
|
|
||||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
||||||
// for more details.
|
|
||||||
//
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "RivObjectSourceInfo.h"
|
|
||||||
|
|
||||||
class RimTextAnnotation;
|
|
||||||
|
|
||||||
class RivTextAnnotationSourceInfo : public RivObjectSourceInfo
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
RivTextAnnotationSourceInfo(RimTextAnnotation* annotation);
|
|
||||||
|
|
||||||
RimTextAnnotation* annotation() const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
caf::PdmPointer<RimTextAnnotation> m_annotation;
|
|
||||||
};
|
|
Loading…
Reference in New Issue
Block a user