Files
integration/luprex/cpp/wrap/wrap-vector.hpp
2023-02-14 14:05:45 -05:00

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