summaryrefslogtreecommitdiff
path: root/LayerManagerBase/include/PluginBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'LayerManagerBase/include/PluginBase.h')
-rw-r--r--LayerManagerBase/include/PluginBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LayerManagerBase/include/PluginBase.h b/LayerManagerBase/include/PluginBase.h
index 20b956a..3437a08 100644
--- a/LayerManagerBase/include/PluginBase.h
+++ b/LayerManagerBase/include/PluginBase.h
@@ -38,7 +38,7 @@ public:
virtual HealthCondition pluginGetHealth();
protected:
- void pluginSetHealth(HealthCondition health);
+ virtual int getIterationCounter() = 0;
protected:
ICommandExecutor& mExecutor;
@@ -46,7 +46,7 @@ protected:
private:
PluginApi mApi;
- HealthCondition mHealth;
+ int m_previousIterationCounter;
};
#endif // __PLUGINBASE_H__