Files
integration/luprex/cpp/wrap/wrap-set.hpp

15 lines
311 B
C++
Raw Normal View History

#ifndef WRAP_SET_HPP
#define WRAP_SET_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.hpp"
#include <set>
namespace eng {
template<class K, class C=std::less<K>>
2022-03-02 14:52:51 -05:00
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