2022-04-10 00:17:06 +00:00
|
|
|
#ifndef _RSTL_MAP_HPP
|
|
|
|
#define _RSTL_MAP_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-08-14 18:38:41 +00:00
|
|
|
#include "rstl/red_black_tree.hpp"
|
2022-08-09 23:03:51 +00:00
|
|
|
#include "rstl/rmemory_allocator.hpp"
|
2022-04-10 00:17:06 +00:00
|
|
|
|
|
|
|
namespace rstl {
|
2022-08-13 02:48:34 +00:00
|
|
|
template < typename K, typename V, typename Cmp = less< K >, typename Alloc = rmemory_allocator >
|
2022-04-10 00:17:06 +00:00
|
|
|
class map {
|
2022-08-14 18:38:41 +00:00
|
|
|
u8 pad[0x14];
|
2022-04-10 00:17:06 +00:00
|
|
|
};
|
|
|
|
} // namespace rstl
|
|
|
|
|
|
|
|
#endif
|