From 49dd11d2c59f125c2f54f2d3e811eec566097d13 Mon Sep 17 00:00:00 2001 From: evomarc Date: Mon, 11 Feb 2002 06:26:48 +0000 Subject: [PATCH] Added the getCounter() method so subclasses have a hand on the generation nb --- eo/src/utils/eoFileSnapshot.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eo/src/utils/eoFileSnapshot.h b/eo/src/utils/eoFileSnapshot.h index b5eb55e6..a43f1d65 100644 --- a/eo/src/utils/eoFileSnapshot.h +++ b/eo/src/utils/eoFileSnapshot.h @@ -83,6 +83,10 @@ public : */ virtual bool hasChanged() {return boolChanged;} + /** accessor to the counter: needed by the gnuplot subclass + */ + unsigned getCounter() {return counter;} + /** accessor to the current filename: needed by the gnuplot subclass */ string getFileName() {return currentFileName;}