From f1865a507cfb112fa891ab67c05d92ba59acc734 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 11 Apr 1997 20:49:48 +0000 Subject: [PATCH] added no arg reset() to bwd iter --- src/cxxTemplates/tsDLList.h | 7 +++++++ src/libCom/cxxTemplates/tsDLList.h | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/src/cxxTemplates/tsDLList.h b/src/cxxTemplates/tsDLList.h index 02d729878..c96857d37 100644 --- a/src/cxxTemplates/tsDLList.h +++ b/src/cxxTemplates/tsDLList.h @@ -31,6 +31,9 @@ * * History * $Log$ + * Revision 1.7 1997/04/10 19:43:10 jhill + * API changes + * * Revision 1.6 1997/01/22 21:13:49 jhill * fixed class decl order for VMS * @@ -587,6 +590,10 @@ public: tsDLBwdIter(tsDLList &listIn) : tsDLIter(listIn) {} + void reset () + { + this->tsDLIter::reset(); + } void reset (tsDLList &listIn) { this->tsDLIter::reset(listIn); diff --git a/src/libCom/cxxTemplates/tsDLList.h b/src/libCom/cxxTemplates/tsDLList.h index 02d729878..c96857d37 100644 --- a/src/libCom/cxxTemplates/tsDLList.h +++ b/src/libCom/cxxTemplates/tsDLList.h @@ -31,6 +31,9 @@ * * History * $Log$ + * Revision 1.7 1997/04/10 19:43:10 jhill + * API changes + * * Revision 1.6 1997/01/22 21:13:49 jhill * fixed class decl order for VMS * @@ -587,6 +590,10 @@ public: tsDLBwdIter(tsDLList &listIn) : tsDLIter(listIn) {} + void reset () + { + this->tsDLIter::reset(); + } void reset (tsDLList &listIn) { this->tsDLIter::reset(listIn);