#ifndef __RSTL_HPP__ #define __RSTL_HPP__ #include #include namespace rstl { /** * @brief Vector reserved on construction */ template class reserved_vector : public std::vector { public: reserved_vector() {this->reserve(N);} }; } #endif // __RSTL_HPP__