Revised the AVLTreeMap code:

* Pulled the actual tree code into a non-templatized class AVLTree to
  reduce the amount of code generated each time the template is
  instantiated.
* Changed the iterator interface to Java-style.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21892 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2007-08-11 14:57:25 +00:00
parent aadc09c665
commit 2529455101
4 changed files with 1114 additions and 1217 deletions
File diff suppressed because it is too large Load Diff
@@ -1,7 +1,7 @@
#ifndef _MALLOC_FREE_ALLOCATOR_H_
#define _MALLOC_FREE_ALLOCATOR_H_
#include "Constructor.h"
#include <util/Constructor.h>
#include <malloc.h>