Updated obj-c bindings for new Matchers and TestCaseInfo changes

This commit is contained in:
Phil Nash
2012-12-06 08:41:38 +00:00
parent fe98123d0b
commit 442463473d
3 changed files with 25 additions and 25 deletions

View File

@@ -15,9 +15,11 @@ namespace Matchers {
template<typename ExpressionT>
struct Matcher : SharedImpl<IShared>
{
typedef ExpressionT ExpressionType;
virtual ~Matcher() {}
virtual Ptr<Matcher> clone() const = 0;
virtual bool match( const ExpressionT& expr ) const = 0;
virtual bool match( ExpressionT const& expr ) const = 0;
virtual std::string toString() const = 0;
};