/usr/include/osl/stl/vector.h is in libosl-dev 0.6.0-3.1.
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 | /* vector.h
*/
#ifndef VECTOR_H
#define VECTOR_H
#include "osl/stl/pool_allocator.h"
#include <vector>
#include <cstddef>
namespace osl
{
namespace stl
{
// 2008-04-23 vector は scalable_allocatorで動かないようにみえる
// gpl_pool_allocatorを使う意味もほとんどないので、標準のallocatorを使う
template <class T>
struct vector : public std::vector<T>
{
typedef std::vector<T> base_t;
vector() {}
explicit vector(size_t s);
vector(size_t s, const T& val) : base_t(s,val)
{
}
vector(const typename base_t::const_iterator it1, const typename base_t::const_iterator it2)
: base_t(it1, it2)
{}
~vector();
};
template <class T>
vector<T>::~vector()
{
}
template <class T>
vector<T>::vector(size_t s) : base_t(s)
{
}
} // namespace stl
using stl::vector;
} // namespace stl
#endif /* VECTOR_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|