First cut of new filtering mechanism

This commit is contained in:
Phil Nash
2012-08-23 20:08:50 +01:00
parent b354da9ab9
commit 56d5c42912
14 changed files with 1535 additions and 1365 deletions

View File

@@ -52,19 +52,14 @@ namespace Catch {
return m_p;
}
T& operator*(){
T& operator*() const {
return *m_p;
}
const T& operator*() const{
return *m_p;
T* operator->() const {
return m_p;
}
T* operator->(){
return m_p;
}
const T* operator->() const{
return m_p;
}
bool operator !() const {
return m_p == NULL;
}