MOCK_INTERFACE renamed to MOCK_BASE_CLASS

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@19 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2009-09-01 14:49:20 +00:00
parent 60d5c263a6
commit 91ea509797
2 changed files with 5 additions and 5 deletions

View file

@ -78,7 +78,7 @@ namespace detail
}; \
struct T##_super_class; \
typedef T##_mock_mixin< T##_super_class > T;
#define MOCK_INTERFACE(T, I) \
#define MOCK_BASE_CLASS(T, I) \
MOCK_MIXIN(T) \
struct T##_typedef { typedef I interface_type; }; \
struct T##_super_class : I, mock::object, private T##_typedef