#ifndef WRAP_VECTOR_HPP #define WRAP_VECTOR_HPP #include "eng-malloc.hpp" #include namespace eng { template class vector : public std::vector>, public eng::opnew { using std::vector>::vector; }; } // namespace eng #endif // WRAP_VECTOR_HPP