OGS
RowColumnIndices.h
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include <vector>
14 
15 namespace MathLib
16 {
17 
18 template <typename IDX_TYPE>
20 {
21  using LineIndex = typename std::vector<IDX_TYPE>;
22  RowColumnIndices(LineIndex const& rows_, LineIndex const& columns_)
23  : rows(rows_), columns(columns_)
24  { }
25 
26  LineIndex const& rows;
28 };
29 
30 } // namespace MathLib
typename std::vector< IDX_TYPE > LineIndex
RowColumnIndices(LineIndex const &rows_, LineIndex const &columns_)
LineIndex const & columns