summaryrefslogtreecommitdiff
path: root/common/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/array.h')
-rwxr-xr-xcommon/array.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/array.h b/common/array.h
index 581d660..2cb4764 100755
--- a/common/array.h
+++ b/common/array.h
@@ -23,6 +23,7 @@ public:
void Sort(LC_PTRARRAY_COMPARE_FUNC SortFunc, void* SortData);
PtrArray<T>& operator=(const PtrArray<T>& Array);
+ PtrArray<T>& operator+=(const PtrArray<T>& Array);
T* operator [](int nIndex) const
{ return m_pData[nIndex]; }