00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #ifndef CREVENTFILTERINTERFACE_H
00012 #define CREVENTFILTERINTERFACE_H
00013
00014 #ifdef __GNUG__
00015
00016 #endif
00017
00018 #include <wxGuiTest/Common.h>
00019
00020 namespace wxTst {
00021
00022
00026 class CREventFilterInterface
00027 {
00028 public:
00032 virtual ~CREventFilterInterface () { };
00033
00034
00040 virtual void FilterEvent (wxEvent& event) = 0;
00041
00042 };
00043
00044 }
00045
00046 #endif // CREVENTFILTERINTERFACE_H
00047