[Mockpp-commits] mockpp/mockpp/matcher AnyArgumentsMatcher.h,1.15,1.16 ArgumentsMatcher.h,1.19,1.20
Brought to you by:
ewald-arnold
Update of /cvsroot/mockpp/mockpp/mockpp/matcher In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12933/mockpp/matcher Modified Files: AnyArgumentsMatcher.h ArgumentsMatcher.h InvocationMatcher.h InvokeAtLeastMatcher.cpp InvokeAtLeastMatcher.h InvokeAtLeastOnceMatcher.cpp InvokeAtLeastOnceMatcher.h InvokeAtMostMatcher.cpp InvokeAtMostMatcher.h InvokeCountMatcher.cpp InvokeCountMatcher.h InvokeOnceMatcher.cpp InvokeOnceMatcher.h InvokedAfterMatcher.h InvokedBeforeMatcher.h InvokedRecorder.cpp InvokedRecorder.h MatcherHolder.h NoArgumentsMatcher.h StatelessInvocationMatcher.h TestFailureMatcher.cpp TestFailureMatcher.h TypelessMatcher.cpp TypelessMatcher.h UnlimitedMatcher.cpp UnlimitedMatcher.h Log Message: update copyright date Index: InvokeOnceMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeOnceMatcher.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- InvokeOnceMatcher.h 27 Feb 2005 11:48:16 -0000 1.20 +++ InvokeOnceMatcher.h 29 Dec 2005 19:29:51 -0000 1.21 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: MatcherHolder.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/MatcherHolder.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- MatcherHolder.h 25 Mar 2005 18:43:04 -0000 1.9 +++ MatcherHolder.h 29 Dec 2005 19:29:51 -0000 1.10 @@ -1,108 +1,108 @@ -/** @file - @internal - @brief Container helper for Matcher objects. - - $Id$ - - ***************************************************************************/ - -/************************************************************************** - - begin : Sun Oct 24 2004 - copyright : (C) 2002-2005 by Ewald Arnold - email : mockpp at ewald-arnold dot de - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 2 of the License, - or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - **/ - -#ifndef MOCKPP_MATCHERHOLDER_H -#define MOCKPP_MATCHERHOLDER_H - -#include <mockpp/util/AutoPointer.h> - -#include <mockpp/mockpp.h> // always first - -#include <mockpp/matcher/InvocationMatcher.h> -#include <mockpp/matcher/TypelessMatcher.h> - - -namespace mockpp { - - -/** Proxy class to conveniently move Matchers into matcher related methods. - * @internal - * @attention Not intended for common use since this class is actually a liar. - */ -template <typename I> // Invocation -class MatcherHolder -{ - public: - - /** Constructs the object. - * @param in_matcher pointer to the matcher - */ - MatcherHolder(InvocationMatcher<I> *in_matcher) - : matcher(in_matcher) - { - } - - /** Constructs the object. - * @param in_matcher pointer to the typeless matcher - */ - MatcherHolder(const typename TypelessMatcher::AP &in_matcher) - : matcher(new TypelessMatcherAdapter<I>(in_matcher)) - { - } - - /** Constructs the object. - * @param in_matcher pointer to the typeless matcher - */ - MatcherHolder(TypelessMatcher*in_matcher) - : matcher(new TypelessMatcherAdapter<I>(in_matcher)) - { - } - - /** Constructs the object. - * @param in_matcher pointer to the matcher - */ - MatcherHolder(const typename InvocationMatcher<I>::AP &in_matcher) - : matcher(in_matcher) - { - } - - /** Returns the matcher object. - * @attention After this method is called this object becomes invalid. - * @return the matcher object - */ -#if defined(__BORLANDC__) && (__BORLANDC__ >= 560) - operator typename AutoPointer<InvocationMatcher<I> > () const // we actually lie a bit -#else - operator typename InvocationMatcher<I>::AP () const -#endif - { - return matcher; - } - - private: - - mutable typename InvocationMatcher<I>::AP matcher; // we actually lie a bit -}; - - -} // namespace mockpp - - -#endif // MOCKPP_MATCHERHOLDER_H +/** @file + @internal + @brief Container helper for Matcher objects. + + $Id$ + + ***************************************************************************/ + +/************************************************************************** + + begin : Sun Oct 24 2004 + copyright : (C) 2002-2006 by Ewald Arnold + email : mockpp at ewald-arnold dot de + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + **/ + +#ifndef MOCKPP_MATCHERHOLDER_H +#define MOCKPP_MATCHERHOLDER_H + +#include <mockpp/util/AutoPointer.h> + +#include <mockpp/mockpp.h> // always first + +#include <mockpp/matcher/InvocationMatcher.h> +#include <mockpp/matcher/TypelessMatcher.h> + + +namespace mockpp { + + +/** Proxy class to conveniently move Matchers into matcher related methods. + * @internal + * @attention Not intended for common use since this class is actually a liar. + */ +template <typename I> // Invocation +class MatcherHolder +{ + public: + + /** Constructs the object. + * @param in_matcher pointer to the matcher + */ + MatcherHolder(InvocationMatcher<I> *in_matcher) + : matcher(in_matcher) + { + } + + /** Constructs the object. + * @param in_matcher pointer to the typeless matcher + */ + MatcherHolder(const typename TypelessMatcher::AP &in_matcher) + : matcher(new TypelessMatcherAdapter<I>(in_matcher)) + { + } + + /** Constructs the object. + * @param in_matcher pointer to the typeless matcher + */ + MatcherHolder(TypelessMatcher*in_matcher) + : matcher(new TypelessMatcherAdapter<I>(in_matcher)) + { + } + + /** Constructs the object. + * @param in_matcher pointer to the matcher + */ + MatcherHolder(const typename InvocationMatcher<I>::AP &in_matcher) + : matcher(in_matcher) + { + } + + /** Returns the matcher object. + * @attention After this method is called this object becomes invalid. + * @return the matcher object + */ +#if defined(__BORLANDC__) && (__BORLANDC__ >= 560) + operator typename AutoPointer<InvocationMatcher<I> > () const // we actually lie a bit +#else + operator typename InvocationMatcher<I>::AP () const +#endif + { + return matcher; + } + + private: + + mutable typename InvocationMatcher<I>::AP matcher; // we actually lie a bit +}; + + +} // namespace mockpp + + +#endif // MOCKPP_MATCHERHOLDER_H Index: TypelessMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/TypelessMatcher.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- TypelessMatcher.h 24 Mar 2005 20:51:30 -0000 1.15 +++ TypelessMatcher.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: AnyArgumentsMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/AnyArgumentsMatcher.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- AnyArgumentsMatcher.h 24 Mar 2005 20:51:30 -0000 1.15 +++ AnyArgumentsMatcher.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: ArgumentsMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/ArgumentsMatcher.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ArgumentsMatcher.h 6 Jan 2005 13:09:23 -0000 1.19 +++ ArgumentsMatcher.h 29 Dec 2005 19:29:51 -0000 1.20 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokedAfterMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedAfterMatcher.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- InvokedAfterMatcher.h 28 Aug 2005 20:40:23 -0000 1.21 +++ InvokedAfterMatcher.h 29 Dec 2005 19:29:51 -0000 1.22 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: TypelessMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/TypelessMatcher.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- TypelessMatcher.cpp 27 Feb 2005 11:48:16 -0000 1.4 +++ TypelessMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.5 @@ -8,7 +8,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokedRecorder.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedRecorder.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- InvokedRecorder.cpp 27 Feb 2005 11:48:16 -0000 1.4 +++ InvokedRecorder.cpp 29 Dec 2005 19:29:51 -0000 1.5 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtMostMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtMostMatcher.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- InvokeAtMostMatcher.cpp 27 Feb 2005 11:48:16 -0000 1.3 +++ InvokeAtMostMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: UnlimitedMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/UnlimitedMatcher.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- UnlimitedMatcher.h 4 Mar 2005 23:37:00 -0000 1.2 +++ UnlimitedMatcher.h 29 Dec 2005 19:29:51 -0000 1.3 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeCountMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeCountMatcher.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- InvokeCountMatcher.h 27 Feb 2005 11:48:16 -0000 1.19 +++ InvokeCountMatcher.h 29 Dec 2005 19:29:51 -0000 1.20 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtLeastMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastMatcher.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- InvokeAtLeastMatcher.h 27 Feb 2005 11:48:16 -0000 1.12 +++ InvokeAtLeastMatcher.h 29 Dec 2005 19:29:51 -0000 1.13 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvocationMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvocationMatcher.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- InvocationMatcher.h 27 Feb 2005 11:48:16 -0000 1.9 +++ InvocationMatcher.h 29 Dec 2005 19:29:51 -0000 1.10 @@ -9,7 +9,7 @@ /************************************************************************** begin : Sun Aug 22 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: UnlimitedMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/UnlimitedMatcher.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- UnlimitedMatcher.cpp 3 Mar 2005 23:32:26 -0000 1.1 +++ UnlimitedMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.2 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtLeastOnceMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastOnceMatcher.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- InvokeAtLeastOnceMatcher.h 3 Mar 2005 15:51:00 -0000 1.22 +++ InvokeAtLeastOnceMatcher.h 29 Dec 2005 19:29:51 -0000 1.23 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeCountMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeCountMatcher.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- InvokeCountMatcher.cpp 27 Feb 2005 11:48:16 -0000 1.3 +++ InvokeCountMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtLeastOnceMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastOnceMatcher.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- InvokeAtLeastOnceMatcher.cpp 3 Mar 2005 15:51:00 -0000 1.1 +++ InvokeAtLeastOnceMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.2 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: TestFailureMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/TestFailureMatcher.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- TestFailureMatcher.h 27 Feb 2005 11:48:16 -0000 1.22 +++ TestFailureMatcher.h 29 Dec 2005 19:29:51 -0000 1.23 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: TestFailureMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/TestFailureMatcher.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- TestFailureMatcher.cpp 28 Aug 2005 20:40:23 -0000 1.4 +++ TestFailureMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.5 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtLeastMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtLeastMatcher.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- InvokeAtLeastMatcher.cpp 27 Feb 2005 11:48:16 -0000 1.3 +++ InvokeAtLeastMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeOnceMatcher.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeOnceMatcher.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- InvokeOnceMatcher.cpp 27 Feb 2005 11:48:16 -0000 1.3 +++ InvokeOnceMatcher.cpp 29 Dec 2005 19:29:51 -0000 1.4 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokeAtMostMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokeAtMostMatcher.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- InvokeAtMostMatcher.h 27 Feb 2005 11:48:16 -0000 1.15 +++ InvokeAtMostMatcher.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: NoArgumentsMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/NoArgumentsMatcher.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- NoArgumentsMatcher.h 24 Mar 2005 20:51:30 -0000 1.15 +++ NoArgumentsMatcher.h 29 Dec 2005 19:29:51 -0000 1.16 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: StatelessInvocationMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/StatelessInvocationMatcher.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- StatelessInvocationMatcher.h 24 Mar 2005 20:51:30 -0000 1.21 +++ StatelessInvocationMatcher.h 29 Dec 2005 19:29:51 -0000 1.22 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokedRecorder.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedRecorder.h,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- InvokedRecorder.h 28 Dec 2005 21:29:19 -0000 1.27 +++ InvokedRecorder.h 29 Dec 2005 19:29:51 -0000 1.28 @@ -9,7 +9,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify Index: InvokedBeforeMatcher.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/matcher/InvokedBeforeMatcher.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- InvokedBeforeMatcher.h 28 Aug 2005 20:40:23 -0000 1.11 +++ InvokedBeforeMatcher.h 29 Dec 2005 19:29:51 -0000 1.12 @@ -8,7 +8,7 @@ /************************************************************************** begin : Thu Aug 26 2004 - copyright : (C) 2002-2005 by Ewald Arnold + copyright : (C) 2002-2006 by Ewald Arnold email : mockpp at ewald-arnold dot de This program is free software; you can redistribute it and/or modify |