Added begin() end() to ElasticVector

This commit is contained in:
Joakim Hove
2015-03-03 11:42:52 +01:00
parent 233922e935
commit 3c84bbbdca

View File

@@ -55,6 +55,15 @@ public:
m_data.push_back(value);
}
typename std::vector<T>::const_iterator begin() const {
return m_data.begin();
}
typename std::vector<T>::const_iterator end() const {
return m_data.end();
}
};
}