X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b3ddc4c2ecd39b94ba5d50de458df4256fe68b36..f6840be66eb772c08f0cbb43de677509d5d132bb:/include/wx/motif/timer.h?ds=sidebyside diff --git a/include/wx/motif/timer.h b/include/wx/motif/timer.h index 28c0d776b4..b669415151 100644 --- a/include/wx/motif/timer.h +++ b/include/wx/motif/timer.h @@ -12,33 +12,33 @@ #ifndef _WX_TIMER_H_ #define _WX_TIMER_H_ -#ifdef __GNUG__ - #pragma interface "timer.h" +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) +#pragma interface "timer.h" #endif class WXDLLEXPORT wxTimer : public wxTimerBase { -friend void wxTimerCallback(wxTimer * timer); - + friend void wxTimerCallback(wxTimer * timer); + public: wxTimer() { Init(); } wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id) - { Init(); } + { Init(); } ~wxTimer(); - - virtual bool Start(int milliseconds = -1, bool oneShot = FALSE); + + virtual bool Start(int milliseconds = -1, bool oneShot = false); virtual void Stop(); - + virtual bool IsRunning() const { return m_id != 0; } - + protected: void Init(); - + long m_id; - + private: DECLARE_DYNAMIC_CLASS(wxTimer) }; #endif - // _WX_TIMER_H_ +// _WX_TIMER_H_