OGS
RowColumnIndices.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <vector>
14
15namespace MathLib
16{
17
18template <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
28};
29
30} // namespace MathLib
typename std::vector< IDX_TYPE > LineIndex
RowColumnIndices(LineIndex const &rows_, LineIndex const &columns_)