]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/memory/allocator.cpp
Merge remote-tracking branch 'ttimo/master'
[xonotic/netradiant.git] / libs / memory / allocator.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "memory/allocator.h"
23
24 #include <vector>
25
26 template<typename Value>
27 struct Vector
28 {
29         typedef std::vector<Value, DefaultAllocator<Value> > Type;
30 };
31
32 namespace
33 {
34 class Bleh
35 {
36 int* m_blah;
37 public:
38 Bleh( int* blah ) : m_blah( blah ){
39 }
40 ~Bleh(){
41         *m_blah = 15;
42 }
43 };
44
45 void TestAllocator(){
46         Vector<Bleh>::Type test;
47
48         int i = 0;
49         test.push_back( Bleh( &i ) );
50 }
51
52 void TestNewDelete(){
53         {
54                 NamedAllocator<int> allocator( "test" );
55                 int* p = NamedNew<int>::type( allocator ).scalar();
56                 //new int();
57                 NamedDelete<int>::type( allocator ).scalar( p );
58         }
59
60         {
61                 int* p = New<int>().scalar( 3 );
62                 Delete<int>().scalar( p );
63         }
64
65         {
66                 int* p = New<int>().scalar( int(15.9) );
67                 Delete<int>().scalar( p );
68         }
69
70         {
71                 int* p = New<int>().vector( 15 );
72                 // new int[15]
73                 Delete<int>().vector( p, 15 );
74         }
75 }
76 }