From 43d42510bc71521c023207c07031182a029ec89c Mon Sep 17 00:00:00 2001 From: evomarc Date: Wed, 18 Sep 2002 15:36:41 +0000 Subject: [PATCH] Added accessors to private parameter stopOnUnknownParam --- eo/src/utils/eoParser.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/eo/src/utils/eoParser.h b/eo/src/utils/eoParser.h index a676259d..08fec402 100644 --- a/eo/src/utils/eoParser.h +++ b/eo/src/utils/eoParser.h @@ -24,7 +24,7 @@ */ //----------------------------------------------------------------------------- /** -CVS Info: $Date: 2002-02-08 07:49:32 $ $Version$ $Author: evomarc $ +CVS Info: $Date: 2002-09-18 15:36:41 $ $Version$ $Author: evomarc $ */ #ifndef eoParser_h #define eoParser_h @@ -185,6 +185,11 @@ public: _shortHand, _section, _required); } +// /** accessors to the stopOnUnknownParam value */ + void setStopOnUnknownParam(bool _b) {stopOnUnknownParam.value()=_b;} + bool getStopOnUnknownParam() {return stopOnUnknownParam.value();} + + private: void doRegisterParam(eoParam& param) const;