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
|
#ifndef INCLUDED_PLAINALLOC_H_
#define INCLUDED_PLAINALLOC_H_
#include <ostream>
template <typename Data>
class PlainAlloc: public std::allocator<Data>
{
template<typename IData>
friend std::ostream &operator<<(std::ostream &out,
PlainAlloc<IData> const &alloc);
Data d_data;
public:
PlainAlloc();
PlainAlloc(Data data);
PlainAlloc(PlainAlloc<Data> const &other);
operator Data &();
PlainAlloc &operator=(Data const &data);
};
template <typename Data>
PlainAlloc<Data>::PlainAlloc()
{}
template <typename Data>
PlainAlloc<Data>::PlainAlloc(Data data)
:
d_data(data)
{}
template <typename Data>
PlainAlloc<Data>::PlainAlloc(PlainAlloc<Data> const &other)
:
d_data(other.d_data)
{}
template <typename Data>
PlainAlloc<Data>::operator Data &()
{
return d_data;
}
template <typename Data>
PlainAlloc<Data> &PlainAlloc<Data>::operator=(Data const &data)
{
d_data = data;
}
template<typename IData>
inline std::ostream &operator<<(std::ostream &out,
PlainAlloc<IData> const &alloc)
{
return out << alloc.d_data;
}
#endif
|