OGS
RowColumnIndices.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <vector>
7
8namespace MathLib
9{
10
11template <typename IDX_TYPE>
13{
14 using LineIndex = typename std::vector<IDX_TYPE>;
15 RowColumnIndices(LineIndex const& rows_, LineIndex const& columns_)
16 : rows(rows_), columns(columns_)
17 {
18 }
19
22};
23
24} // namespace MathLib
typename std::vector< IDX_TYPE > LineIndex
RowColumnIndices(LineIndex const &rows_, LineIndex const &columns_)