Shifted pure virtual updateLegends to RiuViewerToViewInterface

This commit is contained in:
Gaute Lindkvist 2018-04-09 13:13:20 +02:00
parent b6fb60115a
commit 3116a4a223
2 changed files with 3 additions and 2 deletions

View File

@ -131,8 +131,7 @@ public:
void createDisplayModelAndRedraw();
void createHighlightAndGridBoxDisplayModelWithRedraw();
void updateGridBoxData();
void updateAnnotationItems();
virtual void updateLegends() = 0;
void updateAnnotationItems();
bool isMasterView() const;

View File

@ -60,5 +60,7 @@ public:
virtual void setCurrentTimeStepAndUpdate(int frameIndex) = 0;
virtual void updateCurrentTimeStepAndRedraw() = 0;
virtual void updateLegends() = 0;
virtual void endAnimation() = 0;
};