# ifndef KSTD_ALLOCATOR_H_
# define KSTD_ALLOCATOR_H_
# include <new>
# include <cstddef>
# include <cstdlib>
# include <climits>
# include <iostream> namespace kstd
{ template < class T > inline T * _allocate ( ptrdiff_t size, T * ) { T * tmp = ( T * ) ( :: operator new ( ( size_t) ( size * sizeof ( T) ) ) ) ; if ( ! tmp) { std:: cerr << "out of memory" << std:: endl; exit ( 1 ) ; } return tmp; } template < class T > inline void _deallocate ( T * buffer) { :: operator delete ( buffer) ; } template < class T1 , class T2 > inline void _construct ( T1 * p, const T2 & value) { new ( p) T1 ( value) ; } template < class T > inline void _construct ( T* ptr) { new ( ptr) T; } template < class T > inline void _destroy ( T * ptr) { ptr-> ~ T ( ) ; } template < class T > class allocator { public : typedef T value_type; typedef T * pointer; typedef const T * const_pointer; typedef T & reference; typedef const T & const_reference; typedef size_t size_type; typedef ptrdiff_t difference_type; public : static pointer allocate ( size_type n, const void * hint = 0 ) { return _allocate ( ( difference_type) n, ( pointer) 0 ) ; } static void deallocate ( pointer ptr) ; static void construct ( pointer ptr, const_reference value) ; static void construct ( pointer ptr) ; static void destroy ( pointer ptr) ; } ; template < class T > void allocator < T> :: deallocate ( pointer ptr) { _deallocate ( ptr) ; } template < class T > void allocator < T> :: construct ( pointer ptr, const_reference value) { _construct ( ptr, value) ; } template < class T > void allocator < T> :: construct ( pointer ptr) { _construct ( ptr) ; } template < class T > void allocator < T> :: destroy ( pointer ptr) { _destroy ( ptr) ; } }
# endif