StdDeque.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 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 #ifndef EIGEN_STDDEQUE_H
12 #define EIGEN_STDDEQUE_H
13 
14 #ifndef EIGEN_STDDEQUE_MODULE_H
15 #error "Please include Eigen/StdDeque instead of including this file directly."
16 #endif
17 
18 #include "details.h"
19 
25 #define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...) \
26 namespace std \
27 { \
28  template<> \
29  class deque<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
30  : public deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
31  { \
32  typedef deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > deque_base; \
33  public: \
34  typedef __VA_ARGS__ value_type; \
35  typedef deque_base::allocator_type allocator_type; \
36  typedef deque_base::size_type size_type; \
37  typedef deque_base::iterator iterator; \
38  explicit deque(const allocator_type& a = allocator_type()) : deque_base(a) {} \
39  template<typename InputIterator> \
40  deque(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : deque_base(first, last, a) {} \
41  deque(const deque& c) : deque_base(c) {} \
42  explicit deque(size_type num, const value_type& val = value_type()) : deque_base(num, val) {} \
43  deque(iterator start_, iterator end_) : deque_base(start_, end_) {} \
44  deque& operator=(const deque& x) { \
45  deque_base::operator=(x); \
46  return *this; \
47  } \
48  }; \
49 }
50 
51 #endif // EIGEN_STDDEQUE_H