ddnet/src/base/tl/allocator.h

18 lines
516 B
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef BASE_TL_ALLOCATOR_H
#define BASE_TL_ALLOCATOR_H
2009-06-15 06:45:44 +00:00
template<class T>
2009-06-15 06:45:44 +00:00
class allocator_default
{
public:
static T *alloc() { return new T; }
static void free(T *p) { delete p; }
static T *alloc_array(int size) { return new T[size]; }
static void free_array(T *p) { delete[] p; }
2009-06-15 06:45:44 +00:00
};
#endif // TL_FILE_ALLOCATOR_HPP