mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#739 Added a common base class to represent and handle ViewWindows
This commit is contained in:
30
ApplicationCode/ProjectDataModel/RimViewWindow.cpp
Normal file
30
ApplicationCode/ProjectDataModel/RimViewWindow.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#include "RimViewWindow.h"
|
||||
#include "QWidget"
|
||||
|
||||
CAF_PDM_XML_ABSTRACT_SOURCE_INIT(RimViewWindow, "ViewWindow"); // Do not use. Abstract class
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimViewWindow::RimViewWindow(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimViewWindow::~RimViewWindow(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimViewWindow::setViewWidget(QWidget* viewWidget)
|
||||
{
|
||||
m_viewWidget = viewWidget;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user