]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/memory/allocator.cpp
remove RSA's md4.c, replace by DP's
[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     }
41     ~Bleh()
42     {
43       *m_blah = 15;
44     }
45   };
46
47   void TestAllocator()
48   {
49     Vector<Bleh>::Type test;
50
51     int i = 0;
52     test.push_back(Bleh(&i));
53   }
54
55   void TestNewDelete()
56   {
57     {
58       NamedAllocator<int> allocator("test");
59       int* p = NamedNew<int>::type(allocator).scalar();
60       //new int();
61       NamedDelete<int>::type(allocator).scalar(p);
62     }
63
64     {
65       int* p = New<int>().scalar(3);
66       Delete<int>().scalar(p);
67     }
68
69     {
70       int* p = New<int>().scalar(int(15.9));
71       Delete<int>().scalar(p);
72     }
73
74     {
75       int* p = New<int>().vector(15);
76       // new int[15]
77       Delete<int>().vector(p, 15);
78     }
79   }
80 }