www.mooseframework.org
Problem.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #include "Problem.h"
11 #include "Factory.h"
12 #include "Function.h"
13 
16 {
18 
19  params.registerBase("Problem");
20  return params;
21 }
22 
23 Problem::Problem(const InputParameters & parameters)
24  : MooseObject(parameters),
25  PerfGraphInterface(this),
26  _cli_option_found(false),
27  _color_output(false),
28  _termination_requested(false)
29 {
30 }
31 
Problem(const InputParameters &parameters)
Definition: Problem.C:23
virtual ~Problem()
Definition: Problem.C:32
static InputParameters validParams()
Definition: Problem.C:15
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
void registerBase(const std::string &value)
This method must be called from every base "Moose System" to create linkage with the Action System...
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:33
Interface for objects interacting with the PerfGraph.
static InputParameters validParams()
Definition: MooseObject.C:25