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