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