Files
integration/luprex/core/wrap/wrap-vector.hpp
2022-03-02 14:52:51 -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