/usr/include/wx-2.8/wx/vector.h is in wx2.8-headers 2.8.12.1-6ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | ///////////////////////////////////////////////////////////////////////////////
// Name: wx/vector.h
// Purpose: STL vector clone
// Author: Lindsay Mathieson
// Modified by:
// Created: 30.07.2001
// Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef _WX_VECTOR_H_
#define _WX_VECTOR_H_
#include "wx/defs.h"
class WXDLLIMPEXP_BASE wxVectorBase
{
public:
typedef size_t size_type;
private:
size_type m_allocsize;
size_type m_size,
m_capacity;
void **m_objects;
protected:
bool Alloc(size_type sz)
{
// work in multiples of m_allocsize;
sz = (sz / m_allocsize + 1) * m_allocsize;
if (sz <= m_capacity)
return true;
// try to realloc
void *mem = realloc(m_objects, sizeof(void *) * sz);
if (! mem)
return false; // failed
// success
m_objects = (void **) mem;
m_capacity = sz;
return true;
}
// untyped destructor of elements - must be overriden
virtual void Free(void *) = 0;
// untyped copy constructor of elements - must be overriden
virtual void *Copy(const void *) const = 0;
const void *GetItem(size_type idx) const
{
wxASSERT(idx < m_size);
return m_objects[idx];
}
void Append(void *obj)
{
wxASSERT(m_size < m_capacity);
m_objects[m_size] = obj;
m_size++;
}
void RemoveAt(size_type idx)
{
wxASSERT(idx < m_size);
Free(m_objects[idx]);
if (idx < m_size - 1)
memcpy(
m_objects + idx,
m_objects + idx + 1,
( m_size - idx - 1 ) * sizeof(void*) );
m_size--;
}
bool copy(const wxVectorBase& vb)
{
clear();
if (! Alloc(vb.size()))
return false;
for (size_type i = 0; i < vb.size(); i++)
{
void *o = vb.Copy(vb.GetItem(i));
if (! o)
return false;
Append(o);
}
return true;
}
public:
wxVectorBase() : m_allocsize(16), m_size(0), m_capacity(0), m_objects(0) {}
virtual ~wxVectorBase() {} // calm down GCC
void clear()
{
for (size_type i = 0; i < size(); i++)
Free(m_objects[i]);
free(m_objects);
m_objects = 0;
m_size = m_capacity = 0;
}
void reserve(size_type n)
{
if ( !Alloc(n) )
{
wxFAIL_MSG( wxT("out of memory in wxVector::reserve()") );
}
}
size_type size() const
{
return m_size;
}
size_type capacity() const
{
return m_capacity;
}
bool empty() const
{
return size() == 0;
}
wxVectorBase& operator = (const wxVectorBase& vb)
{
wxCHECK(copy(vb), *this);
return *this;
}
};
#define WX_DECLARE_VECTORBASE(obj, cls)\
protected:\
virtual void Free(void *o)\
{\
delete (obj *) o;\
}\
virtual void *Copy(const void *o) const\
{\
return new obj(*(obj *) o);\
}\
public:\
cls() {}\
cls(const cls& c) : wxVectorBase()\
{\
wxCHECK2(copy(c), return);\
}\
~cls()\
{\
clear();\
}
#define _WX_DECLARE_VECTOR(obj, cls, exp)\
class exp cls : public wxVectorBase\
{\
WX_DECLARE_VECTORBASE(obj, cls)\
public:\
void push_back(const obj& o)\
{\
wxCHECK2(Alloc(size() + 1), return);\
Append(new obj(o));\
}\
void pop_back()\
{\
RemoveAt(size() - 1);\
}\
const obj& at(size_type idx) const\
{\
return *(obj *) GetItem(idx);\
}\
obj& at(size_type idx)\
{\
return *(obj *) GetItem(idx);\
}\
const obj& operator[](size_type idx) const\
{\
return at(idx);\
}\
obj& operator[](size_type idx)\
{\
return at(idx);\
}\
const obj& front() const\
{\
return at(0);\
}\
obj& front()\
{\
return at(0);\
}\
const obj& back() const\
{\
return at(size() - 1);\
}\
obj& back()\
{\
return at(size() - 1);\
}\
size_type erase(size_type idx)\
{\
RemoveAt(idx);\
return idx;\
}\
}
#define WX_DECLARE_VECTOR(obj, cls) \
_WX_DECLARE_VECTOR(obj, cls, WXDLLEXPORT)
#endif // _WX_VECTOR_H_
|