OpenGM  2.3.x
Discrete Graphical Model Library
buffer_randomaccessset.hxx
Go to the documentation of this file.
1 #pragma once
2 #ifndef OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
3 #define OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
4 
5 #include <vector>
6 #include <algorithm>
7 #include <utility>
8 
10 
11 namespace opengm {
12  template<class T>
14  public:
15  void insert(const T & );
16  private:
17  BufferVector<T> vector_;
18  };
19 } // namespace opengm
20 
21 #endif // #ifndef OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
The OpenGM namespace.
Definition: config.hxx:43