113 lines
2.4 KiB
C++
Raw Normal View History

2021-10-09 15:16:34 -05:00
/*****************************************************************************
DynArray.hpp
By Laurent de Soras
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#if defined(ffft_DynArray_CURRENT_CODEHEADER)
# error Recursive inclusion of DynArray code header.
2021-10-09 15:16:34 -05:00
#endif
#define ffft_DynArray_CURRENT_CODEHEADER
2021-10-09 15:16:34 -05:00
#if !defined(ffft_DynArray_CODEHEADER_INCLUDED)
# define ffft_DynArray_CODEHEADER_INCLUDED
2021-10-09 15:16:34 -05:00
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
# include <cassert>
2021-10-09 15:16:34 -05:00
namespace ffft
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
template<class T>
DynArray<T>::DynArray()
: _data_ptr(0)
, _len(0)
2021-10-09 15:16:34 -05:00
{
// Nothing
2021-10-09 15:16:34 -05:00
}
template<class T>
DynArray<T>::DynArray(long size)
: _data_ptr(0)
, _len(0)
2021-10-09 15:16:34 -05:00
{
assert(size >= 0);
if (size > 0)
{
_data_ptr = new DataType[size];
_len = size;
}
2021-10-09 15:16:34 -05:00
}
template<class T>
DynArray<T>::~DynArray()
2021-10-09 15:16:34 -05:00
{
delete[] _data_ptr;
_data_ptr = 0;
_len = 0;
2021-10-09 15:16:34 -05:00
}
template<class T>
long DynArray<T>::size() const
2021-10-09 15:16:34 -05:00
{
return (_len);
2021-10-09 15:16:34 -05:00
}
template<class T>
void DynArray<T>::resize(long size)
2021-10-09 15:16:34 -05:00
{
assert(size >= 0);
if (size > 0)
{
DataType *old_data_ptr = _data_ptr;
DataType *tmp_data_ptr = new DataType[size];
2021-10-09 15:16:34 -05:00
_data_ptr = tmp_data_ptr;
_len = size;
2021-10-09 15:16:34 -05:00
delete[] old_data_ptr;
}
2021-10-09 15:16:34 -05:00
}
template<class T>
const typename DynArray<T>::DataType &DynArray<T>::operator[](long pos) const
2021-10-09 15:16:34 -05:00
{
assert(pos >= 0);
assert(pos < _len);
2021-10-09 15:16:34 -05:00
return (_data_ptr[pos]);
2021-10-09 15:16:34 -05:00
}
template<class T>
typename DynArray<T>::DataType &DynArray<T>::operator[](long pos)
2021-10-09 15:16:34 -05:00
{
assert(pos >= 0);
assert(pos < _len);
2021-10-09 15:16:34 -05:00
return (_data_ptr[pos]);
2021-10-09 15:16:34 -05:00
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace ffft
2021-10-09 15:16:34 -05:00
#endif // ffft_DynArray_CODEHEADER_INCLUDED
2021-10-09 15:16:34 -05:00
#undef ffft_DynArray_CURRENT_CODEHEADER
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/