Removed obsolete mock::object::verify and mock::object::reset methods (to avoid mix-ups with user methods possibly named the same)

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@407 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-01-14 18:09:03 +00:00
parent 6d3968db1e
commit 7fb0b814b3

View file

@ -27,15 +27,6 @@ namespace mock
: impl_( new object_impl() )
{}
bool verify() const // $$$$ MAT : to be deprecated
{
return impl_->verify();
}
void reset() // $$$$ MAT : to be deprecated
{
impl_->reset();
}
protected:
~object()
{}