00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef HEADER_SUPERTUX_OBSTACK_OBSTACKPP_HPP
00018 #define HEADER_SUPERTUX_OBSTACK_OBSTACKPP_HPP
00019
00020 #include <obstack.h>
00021
00022 inline void*
00023 operator new (size_t bytes, struct obstack& obst)
00024 {
00025 return obstack_alloc(&obst, bytes);
00026 }
00027
00028 inline void*
00029 operator new[] (size_t bytes, struct obstack& obst)
00030 {
00031 return obstack_alloc(&obst, bytes);
00032 }
00033
00034 static inline void* obstack_chunk_alloc(size_t size)
00035 {
00036 return new char[size];
00037 }
00038
00039 static inline void obstack_chunk_free(void* data)
00040 {
00041 char* ptr = static_cast<char*> (data);
00042 delete[] ptr;
00043 }
00044
00045 #endif
00046
00047