00001 00002 // Name: wxGuiTest/CRLogInterface.h 00003 // Author: Reinhold Fuereder 00004 // Created: 2004 00005 // Copyright: (c) 2005 Reinhold Fuereder 00006 // Licence: wxWindows licence 00007 // 00008 // $Id$ 00010 00011 #ifndef CRLOGINTERFACE_H 00012 #define CRLOGINTERFACE_H 00013 00014 #ifdef __GNUG__ 00015 // #pragma interface "CRLogInterface.h" 00016 #endif 00017 00018 #include <wxGuiTest/Common.h> 00019 00020 namespace wxTst { 00021 00022 00026 class CRLogInterface 00027 { 00028 public: 00029 virtual ~CRLogInterface() {} 00035 virtual void Log (const wxString &text) = 0; 00036 00037 00038 }; 00039 00040 } // End namespace wxTst 00041 00042 #endif // CRLOGINTERFACE_H 00043