ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/util.h
(Generate patch)

Comparing deliantra/server/include/util.h (file contents):
Revision 1.20 by root, Sun Dec 17 23:10:35 2006 UTC vs.
Revision 1.23 by root, Sat Dec 23 16:05:19 2006 UTC

53 53
54// also copies src into the new area, like "memdup" 54// also copies src into the new area, like "memdup"
55// if src is 0, clears the memory 55// if src is 0, clears the memory
56template<typename T> 56template<typename T>
57inline T *salloc (int n, T *src) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), (void *)src); } 57inline T *salloc (int n, T *src) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), (void *)src); }
58
59// clears the memory
60template<typename T>
61inline T *salloc0(int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), 0); }
58 62
59// for symmetry 63// for symmetry
60template<typename T> 64template<typename T>
61inline void sfree (T *ptr, int n = 1) throw () 65inline void sfree (T *ptr, int n = 1) throw ()
62{ 66{
119}; 123};
120 124
121struct refcounted 125struct refcounted
122{ 126{
123 refcounted () : refcnt (0) { } 127 refcounted () : refcnt (0) { }
124// virtual ~refcounted (); 128 virtual ~refcounted ();
125 void refcnt_inc () { ++refcnt; } 129 void refcnt_inc () { ++refcnt; }
126 void refcnt_dec () { --refcnt; } 130 void refcnt_dec () { --refcnt; }
127 bool dead () { return refcnt == 0; } 131 bool dead () { return refcnt == 0; }
128 mutable int refcnt; 132 mutable int refcnt;
129#if 0 133#if 0
161 T &operator * () const { return *p; } 165 T &operator * () const { return *p; }
162 T *operator ->() const { return p; } 166 T *operator ->() const { return p; }
163 167
164 operator T *() const { return p; } 168 operator T *() const { return p; }
165}; 169};
170
171typedef refptr<player> player_ptr;
172typedef refptr<object> object_ptr;
173typedef refptr<archetype> arch_ptr;
166 174
167struct str_hash 175struct str_hash
168{ 176{
169 std::size_t operator ()(const char *s) const 177 std::size_t operator ()(const char *s) const
170 { 178 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines