00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #ifndef WARNINGASSERTERINTERFACE_H
00012 #define WARNINGASSERTERINTERFACE_H
00013
00014 #ifdef __GNUG__
00015
00016 #endif
00017
00018 #include <wxGuiTest/Common.h>
00019
00020 namespace wxTst {
00021
00022
00026 class WarningAsserterInterface
00027 {
00028 public:
00029 virtual ~WarningAsserterInterface() {}
00038 virtual void FailAssert (const wxString &file, const int line,
00039 const wxString &shortDescription, const wxString &message) const = 0;
00040
00041 };
00042
00043 }
00044
00045 #endif // WARNINGASSERTERINTERFACE_H
00046