From a403525af015525a30a95491f61d5e96b36adb95 Mon Sep 17 00:00:00 2001 From: evomarc Date: Sat, 17 Feb 2001 06:47:31 +0000 Subject: [PATCH] Forgot the selector in the ctor --- eo/tutorial/Templates/genop.tmpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eo/tutorial/Templates/genop.tmpl b/eo/tutorial/Templates/genop.tmpl index 3f0bebc3..397f3125 100644 --- a/eo/tutorial/Templates/genop.tmpl +++ b/eo/tutorial/Templates/genop.tmpl @@ -124,8 +124,8 @@ public: /** * (Default) Constructor. */ - eoMyDerivedShrink2GenOp(paramType _anyParameter) : - anyParameter(_anyParameter) {} + eoMyDerivedShrink2GenOp(eoSelectOne & _sel, paramType _anyParameter) : + sel(_sel), anyParameter(_anyParameter) {} /// The class name. Used to display statistics string className() const { return "eoMyDerivedShrink2GenOp"; } @@ -167,5 +167,6 @@ public: protected: + eoSelectoIne & sel; paramType anyParameter };