diff --git a/BAN/include/BAN/Vector.h b/BAN/include/BAN/Vector.h index f20c91a43..66defc61c 100644 --- a/BAN/include/BAN/Vector.h +++ b/BAN/include/BAN/Vector.h @@ -49,6 +49,9 @@ namespace BAN void remove(size_type); void clear(); + T* data() { return m_data; } + const T* data() const { return m_data; } + bool contains(const T&) const; const T& operator[](size_type) const;