Skip to content
Snippets Groups Projects
Commit 1cd5e30e authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[NL] added named function provider

parent 60e8cc2a
No related branches found
No related tags found
No related merge requests found
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#ifndef NUMLIB_NAMEDFUNCTIONPROVIDER_H
#define NUMLIB_NAMEDFUNCTIONPROVIDER_H
#include "NamedFunction.h"
namespace NumLib
{
//! Interface used for providing named functions.
class NamedFunctionProvider
{
public:
virtual std::vector<NamedFunction> getNamedFunctions() const { return {}; }
virtual ~NamedFunctionProvider() = default;
};
} // namespace NumLib
#endif // NUMLIB_NAMEDFUNCTIONPROVIDER_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment