ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.h
(Generate patch)

Comparing rxvt-unicode/src/rxvtutil.h (file contents):
Revision 1.59 by sf-exg, Thu Oct 23 22:39:40 2014 UTC vs.
Revision 1.62 by sf-exg, Wed Nov 12 12:12:02 2014 UTC

1#ifndef RXVT_UTIL_H 1#ifndef RXVT_UTIL_H
2#define RXVT_UTIL_H 2#define RXVT_UTIL_H
3 3
4#include <new>
5#include <stdlib.h> 4#include <stdlib.h>
6#include <string.h> 5#include <string.h>
7#include "ecb.h" 6#include "ecb.h"
8#include "estl.h" 7#include "estl.h"
9 8
87 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); } 86 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); }
88 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); } 87 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); }
89}; 88};
90#endif 89#endif
91 90
92inline void * 91typedef estl::scoped_array<char> auto_str;
93operator new (size_t size) throw (std::bad_alloc)
94{
95 // TODO: use rxvt_malloc
96 return malloc (size);
97}
98
99inline void
100operator delete (void *p) throw ()
101{
102 free (p);
103}
104
105template<typename T>
106struct auto_ptr
107{
108 T *p;
109
110 auto_ptr () : p (0) { }
111
112 explicit
113 auto_ptr (T *a) : p (a) { }
114
115 auto_ptr (auto_ptr &a)
116 {
117 p = a.p;
118 a.p = 0;
119 }
120
121 template<typename A>
122 auto_ptr (auto_ptr<A> &a)
123 {
124 p = a.p;
125 a.p = 0;
126 }
127
128 ~auto_ptr ()
129 {
130 delete p;
131 }
132
133 void reset (T *a)
134 {
135 delete p;
136 p = a;
137 }
138
139 // void because it makes sense in our context
140 void operator =(auto_ptr &a)
141 {
142 reset (a.release ());
143 }
144
145 template<typename A>
146 void operator =(auto_ptr<A> &a)
147 {
148 reset (a.release ());
149 }
150
151 T *operator ->() const { return p; }
152 T &operator *() const { return *p; }
153
154 operator T *() { return p; }
155 T *get () const { return p; }
156
157 T *release()
158 {
159 T *r = p;
160 p = 0;
161 return r;
162 }
163};
164
165typedef auto_ptr<char> auto_str;
166 92
167#endif 93#endif
168 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines