00001 00002 // Name: wxGuiTest/CapturedEvents/CRCapturedEvent.cpp 00003 // Author: Reinhold Fuereder 00004 // Created: 2004 00005 // Copyright: (c) 2005 Reinhold Fuereder 00006 // Licence: wxWindows licence 00007 // 00008 // $Id$ 00010 00011 #ifdef __GNUG__ 00012 #pragma implementation "CRCapturedEvent.h" 00013 #endif 00014 00015 #include "CRCapturedEvent.h" 00016 00017 namespace wxTst { 00018 00019 00020 CRCapturedEvent::CRCapturedEvent (wxEvent *event) : 00021 m_event (event) 00022 { 00023 // Nothing to do 00024 } 00025 00026 00027 CRCapturedEvent::~CRCapturedEvent () 00028 { 00029 // Nothing to do 00030 } 00031 00032 00033 wxEvent * CRCapturedEvent::GetEvent () 00034 { 00035 return m_event; 00036 } 00037 00038 00039 bool CRCapturedEvent::IsPending () const 00040 { 00041 return false; 00042 } 00043 00044 00045 bool CRCapturedEvent::IsIrrelevant () const 00046 { 00047 return false; 00048 } 00049 00050 } // End namespace wxTst 00051