peo debug

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1006 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
canape 2008-02-26 10:47:56 +00:00
commit 22a1dcd146
5 changed files with 12 additions and 6 deletions

View file

@ -52,9 +52,11 @@ class continuator
{
public:
//! @brief Virtual function of check
//! @return true if the algorithm must continue
//! @brief Virtual function of check
//! @return true if the algorithm must continue
virtual bool check()=0;
//! @brief Virtual destructor
virtual ~continuator(){}
};
@ -103,6 +105,8 @@ template < class TYPE> class selector
//! @brief Virtual operator on the template type
//! @param TYPE &
virtual void operator()(TYPE &)=0;
//! @brief Virtual destructor
virtual ~selector(){}
};
@ -156,6 +160,8 @@ template < class TYPE> class replacement
//! @brief Virtual operator on the template type
//! @param TYPE &
virtual void operator()(TYPE &)=0;
//! @brief Virtual destructor
virtual ~replacement(){}
};