Create a new ApplicationExe project for the executable

This commit is contained in:
Gaute Lindkvist
2021-01-06 15:03:38 +01:00
parent 2de5c9ce0b
commit 04d5daca67
412 changed files with 1438 additions and 872 deletions

View File

@@ -57,7 +57,7 @@ public:
void addPlot( RimPlotType* plot ) { insertPlot( plot, plotCount() ); }
virtual void insertPlot( RimPlotType* plot, size_t index ) = 0;
virtual void removePlot( RimPlotType* plot ) = 0;
void removeRimPlot( RimPlot* rimPlot )
void removeRimPlot( RimPlot* rimPlot ) override
{
auto typedPlot = dynamic_cast<RimPlotType*>( rimPlot );
if ( typedPlot )