00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #ifdef __GNUG__
00012 #pragma implementation "ProvokedWarning.h"
00013 #endif
00014
00015 #include <wxGuiTest/ProvokedWarning.h>
00016
00017 namespace wxTst {
00018
00019
00020 ProvokedWarning::ProvokedWarning (const wxString &caption,
00021 const wxString& message, const unsigned int timeout) :
00022 m_caption (caption),
00023 m_message (message)
00024 {
00025 m_timeout.SetToCurrent ();
00026 m_timeout.Add (wxTimeSpan::Seconds (timeout));
00027 }
00028
00029 const wxString& ProvokedWarning::GetCaption () const
00030 {
00031 return m_caption;
00032 }
00033
00034
00035 const wxString& ProvokedWarning::GetMessage () const
00036 {
00037 return m_message;
00038 }
00039
00040
00041 const wxDateTime& ProvokedWarning::GetTimeout () const
00042 {
00043 return m_timeout;
00044 }
00045
00046 }
00047