diff options
Diffstat (limited to 'include/m_system_cpp.h')
-rw-r--r-- | include/m_system_cpp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 6ca2f2e354..500dd1d3c2 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -201,6 +201,9 @@ template<class T> struct LIST __inline void put(int idx, T *p) { items[idx] = p; }
+ __inline T** begin() const { return items; }
+ __inline T** end() const { return items + count; }
+
protected:
T** items;
int count, limit, increment;
|