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
|
#include <BALL/PYTHON/EXTENSIONS/pyIndexList.h>
#include <BALL/KERNEL/atom.h>
#include <BALL/KERNEL/expression.h>
#include <BALL/KERNEL/atomContainer.h>
namespace BALL
{
PyIndexList::PyIndexList()
: list<Index>()
{
}
PyIndexList::PyIndexList(const PyIndexList& new_list)
: list<Index>(new_list)
{
}
PyIndexList::~PyIndexList()
throw()
{
}
PyIndexList::PyIndexList(const std::list<Index>& idx_list)
{
operator = (idx_list);
}
PyIndexList::PyIndexList(const std::list<Position>& pos_list)
{
operator = (pos_list);
}
PyIndexList::PyIndexList(const std::vector<Index>& idx_vector)
{
operator = (idx_vector);
}
PyIndexList::PyIndexList(const std::vector<Position>& pos_vector)
{
operator = (pos_vector);
}
PyIndexList& PyIndexList::operator = (const std::list<Index>& idx_list)
{
// clear the old contents
clear();
std::copy(idx_list.begin(), idx_list.end(), std::back_inserter<PyIndexList>(*this));
return *this;
}
PyIndexList& PyIndexList::operator = (const std::list<Position>& pos_list)
{
// clear the old contents
clear();
std::copy(pos_list.begin(), pos_list.end(), std::back_inserter<PyIndexList>(*this));
return *this;
}
PyIndexList& PyIndexList::operator = (const std::vector<Index>& idx_vector)
{
// clear the old contents
clear();
std::copy(idx_vector.begin(), idx_vector.end(), std::back_inserter<PyIndexList>(*this));
return *this;
}
PyIndexList& PyIndexList::operator = (const std::vector<Position>& pos_vector)
{
// clear the old contents
clear();
std::copy(pos_vector.begin(), pos_vector.end(), std::back_inserter<PyIndexList>(*this));
return *this;
}
}
|