swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: 382e94b1570ce3132e49f343eb3c254a79cac295 authored by wenqing on 19 February 2021, 21:18:13 UTC
Merge branch 'formKelvinVector' into 'master'
Tip revision: 382e94b
GlobalMatrixProviders.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 "numlib_export.h"

#include "MatrixProviderUser.h"

namespace NumLib
{
struct GlobalVectorProvider
{
    static NUMLIB_EXPORT VectorProvider& provider;
};

struct GlobalMatrixProvider
{
    static NUMLIB_EXPORT MatrixProvider& provider;
};

void cleanupGlobalMatrixProviders();

}  // namespace NumLib
back to top