Revision 67595dfb447d16bba11e1af7867048c4956e8e7d authored by Lars Bilke on 21 October 2021, 13:25:19 UTC, committed by Lars Bilke on 21 October 2021, 13:25:19 UTC
1 parent da134e8
Raw File
RowColumnIndices.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <vector>

namespace MathLib
{

template <typename IDX_TYPE>
struct RowColumnIndices
{
    using LineIndex = typename std::vector<IDX_TYPE>;
    RowColumnIndices(LineIndex const& rows_, LineIndex const& columns_)
        : rows(rows_), columns(columns_)
    { }

    LineIndex const& rows;
    LineIndex const& columns;
};

}  // namespace MathLib
back to top