https://mooseframework.inl.gov
Loading...
Searching...
No Matches
FunctionBase.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12#include "MooseObject.h"
13#include "SetupInterface.h"
14#include "TransientInterface.h"
16#include "UserObjectInterface.h"
17#include "Restartable.h"
19#include "ScalarCoupleable.h"
20
21namespace Moose
22{
23
25 public SetupInterface,
26 public TransientInterface,
29 public Restartable,
31 public ScalarCoupleable
32{
33public:
35
37
38#ifdef MOOSE_KOKKOS_ENABLED
42 FunctionBase(const FunctionBase & object, const Moose::Kokkos::FunctorCopy & key);
43#endif
44
45 virtual ~FunctionBase();
46};
47
48}
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Interface for notifications that the mesh has changed.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
static InputParameters validParams()
virtual ~FunctionBase()
Interface class for classes which interact with Postprocessors.
A class for creating restricted objects.
Definition Restartable.h:29
Interface for objects that needs scalar coupling capabilities.
Interface for objects that needs transient capabilities.
Interface for objects that need to use UserObjects.
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...