Files
integration/luprex/cpp/wrap/wrap-vector.hpp

15 lines
307 B
C++
Raw Normal View History

#ifndef WRAP_VECTOR_HPP
#define WRAP_VECTOR_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.hpp"
#include <vector>
namespace eng {
template<class T>
2022-03-02 14:52:51 -05:00
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