swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: 0c8206d2cb650469f58de3680056ab63f2597905 authored by Dmitry Yu. Naumov on 22 March 2021, 14:13:55 UTC
Merge branch 'XmlInterfaces' into 'master'
Tip revision: 0c8206d
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