git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24698 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
     // return TRUE if the timer is one shot
     bool IsOneShot() const { return m_oneShot; }
 
     // return TRUE if the timer is one shot
     bool IsOneShot() const { return m_oneShot; }
 
+    // return the timer ID
+    int GetId() const { return m_idTimer; }
+    
+
 protected:
     // common part of all ctors
     void Init() { m_oneShot = FALSE; m_milli = 0; }
 protected:
     // common part of all ctors
     void Init() { m_oneShot = FALSE; m_milli = 0; }
 
 
     // return True if the timer is one shot
     bool IsOneShot() const;
 
     // return True if the timer is one shot
     bool IsOneShot() const;
+
+    // return the timer ID
+    int GetId() const;
+