Commit 65e471049514a3038de1782f6f8e5a2d32508f7a

Authored by Georg Hopp
1 parent 427e1faf

Update mock class to latest changes in class system.

... ... @@ -67,6 +67,6 @@ mockClone(void * _this, void * _base)
67 67 }
68 68
69 69 TR_INIT_IFACE(TR_Class, mockCtor, mockDtor, mockClone);
70   -TR_CREATE_CLASS(MockClass, NULL, TR_IF(TR_Class));
  70 +TR_CREATE_CLASS(MockClass, NULL, NULL, TR_IF(TR_Class));
71 71
72 72 // vim: set et ts=4 sw=4:
... ...
... ... @@ -36,6 +36,7 @@ void _reset();
36 36 TR_CLASS(MockClass) {
37 37 int value;
38 38 };
  39 +TR_CLASSVARS_DECL(MockClass) {};
39 40
40 41 /**
41 42 * ~~~ method declarations ~~~~~~~~
... ...
Please register or login to post a comment