summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/BoostWorkaround/boost/scoped_array.hpp
blob: fb1b115440630e70ff53a6012441146e74e4aada (plain)
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

#ifndef __AI_BOOST_SCOPED_ARRAY_INCLUDED
#define __AI_BOOST_SCOPED_ARRAY_INCLUDED

#ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED

namespace boost {

// small replacement for boost::scoped_array
template <class T>
class scoped_array
{
public:

	// provide a default construtctor
	scoped_array()
		: ptr(0)
	{
	}

	// construction from an existing heap object of type T
	scoped_array(T* _ptr)
		: ptr(_ptr)
	{
	}

	// automatic destruction of the wrapped object at the
	// end of our lifetime
	~scoped_array()
	{
		delete[] ptr;
	}

	inline T* get()
	{
		return ptr;
	}

	inline T* operator-> ()
	{
		return ptr;
	}

	inline void reset (T* t = 0)
	{
		delete[] ptr;
		ptr = t;
	}

	T & operator[](std::ptrdiff_t i) const
	{
		return ptr[i];
	}

	void swap(scoped_array & b)
	{
		std::swap(ptr, b.ptr);
	}

private:

	// encapsulated object pointer
	T* ptr;

};

template<class T>
inline void swap(scoped_array<T> & a, scoped_array<T> & b)
{
	a.swap(b);
}

} // end of namespace boost

#else
#	error "scoped_array.h was already included"
#endif
#endif // __AI_BOOST_SCOPED_ARRAY_INCLUDED