15 lines
307 B
C++
15 lines
307 B
C++
#ifndef WRAP_VECTOR_HPP
|
|
#define WRAP_VECTOR_HPP
|
|
|
|
#include "eng-malloc.hpp"
|
|
#include <vector>
|
|
|
|
namespace eng {
|
|
template<class T>
|
|
class vector : public std::vector<T, eng::allocator<T>>, public eng::opnew {
|
|
using std::vector<T, eng::allocator<T>>::vector;
|
|
};
|
|
} // namespace eng
|
|
|
|
#endif // WRAP_VECTOR_HPP
|