Change directory structure
This commit is contained in:
14
luprex/cpp/wrap/wrap-deque.hpp
Normal file
14
luprex/cpp/wrap/wrap-deque.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef WRAP_DEQUE_HPP
|
||||
#define WRAP_DEQUE_HPP
|
||||
|
||||
#include "eng-malloc.hpp"
|
||||
#include <deque>
|
||||
|
||||
namespace eng {
|
||||
template<class T>
|
||||
class deque : public std::deque<T, eng::allocator<T>>, public eng::opnew {
|
||||
using std::deque<T, eng::allocator<T>>::deque;
|
||||
};
|
||||
} // namespace eng
|
||||
|
||||
#endif // WRAP_DEQUE_HPP
|
||||
Reference in New Issue
Block a user