blob: 2ad41fd396de7498636705f9818056c95484999c (
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
|
#ifndef LIST_H
#define LIST_H
#include <vector>
#include <algorithm>
#include <boost/serialization/base_object.hpp>
//! List class with extended functionality over std::vector.
template<class T, class B = std::vector<T> >
class List : public B {
public:
//! Default constructor.
List() : B() {}
//! Iterator constructor.
template <class InputIterator>
List(InputIterator first, InputIterator last) : B(first, last) {}
//! Sort the list.
void sort() {
std::sort(B::begin(), B::end());
}
//! Check if specified item is present in list.
bool contains(T item) {
return std::find(B::begin(), B::end(), item) != B::end();
}
//! Delete item by index.
void del(std::size_t index) {
erase(B::begin() + index);
}
//! Check whether list is empty or not.
operator bool() const {
return !B::empty();
}
//! Allow serialization through Boost.Serialize.
template<class Archive>
void serialize(Archive & ar, const unsigned int version) {
ar & boost::serialization::base_object<B>(*this);
}
};
#endif
|