StdList.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_STDLIST_H
11 #define EIGEN_STDLIST_H
12 
13 #ifndef EIGEN_STDLIST_MODULE_H
14 #error "Please include Eigen/StdList instead of including this file directly."
15 #endif
16 
17 #include "details.h"
18 
24 #define EIGEN_DEFINE_STL_LIST_SPECIALIZATION(...) \
25 namespace std \
26 { \
27  template<> \
28  class list<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
29  : public list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
30  { \
31  typedef list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > list_base; \
32  public: \
33  typedef __VA_ARGS__ value_type; \
34  typedef list_base::allocator_type allocator_type; \
35  typedef list_base::size_type size_type; \
36  typedef list_base::iterator iterator; \
37  explicit list(const allocator_type& a = allocator_type()) : list_base(a) {} \
38  template<typename InputIterator> \
39  list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
40  list(const list& c) : list_base(c) {} \
41  explicit list(size_type num, const value_type& val = value_type()) : list_base(num, val) {} \
42  list(iterator start_, iterator end_) : list_base(start_, end_) {} \
43  list& operator=(const list& x) { \
44  list_base::operator=(x); \
45  return *this; \
46  } \
47  }; \
48 }
49 
50 #endif // EIGEN_STDLIST_H