Revision c80890d90b06f8f0daa799f58d4fb29295651cfe authored by Thomas Fischer on 25 June 2021, 10:43:46 UTC, committed by Thomas Fischer on 01 July 2021, 14:17:05 UTC
This data isn't required anymore. The type of
station can be obtained via dynamic_cast.
1 parent 66b63d0
Raw File
IndexValueVector.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 NumLib
{

template <typename IndexType>
struct IndexValueVector final
{
    std::vector<IndexType> ids;
    std::vector<double> values;
};

}  // namespace NumLib
back to top