#include <QSet>
Go to the source code of this file.
#define DECLARE_GENERICEVENTNOTIFY_SENDER |
( |
|
T, |
|
|
|
B |
|
) |
| |
Value:class T :
public B,
public GenericEventNotifySender \
{ \
public: \
T (
QWidget* xparent) :
B (xparent), GenericEventNotifySender () { } \
~ T (void) { } \
bool event (QEvent* evt) \
if (! notifyReceiversBefore (this, evt)) \
result = B::event (evt); \
notifyReceiversAfter (this, evt); \
return result; \
} \
}
F77_RET_T const octave_idx_type Complex const octave_idx_type Complex * B
Definition at line 85 of file GenericEventNotify.h.