www.mooseframework.org
Public Member Functions | Static Public Member Functions | List of all members
ChemicalReactionsApp Class Reference

#include <ChemicalReactionsApp.h>

Inheritance diagram for ChemicalReactionsApp:
[legend]

Public Member Functions

 ChemicalReactionsApp (const InputParameters &parameters)
 
virtual ~ChemicalReactionsApp ()
 

Static Public Member Functions

static void registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
static void registerApps ()
 
static void registerObjects (Factory &factory)
 
static void associateSyntax (Syntax &syntax, ActionFactory &action_factory)
 
static void registerExecFlags (Factory &factory)
 

Detailed Description

Definition at line 19 of file ChemicalReactionsApp.h.

Constructor & Destructor Documentation

◆ ChemicalReactionsApp()

ChemicalReactionsApp::ChemicalReactionsApp ( const InputParameters &  parameters)

Definition at line 31 of file ChemicalReactionsApp.C.

32  : MooseApp(parameters)
33 {
34  ChemicalReactionsApp::registerAll(_factory, _action_factory, _syntax);
35 }

◆ ~ChemicalReactionsApp()

ChemicalReactionsApp::~ChemicalReactionsApp ( )
virtual

Definition at line 37 of file ChemicalReactionsApp.C.

37 {}

Member Function Documentation

◆ associateSyntax()

void ChemicalReactionsApp::associateSyntax ( Syntax &  syntax,
ActionFactory &  action_factory 
)
static

Definition at line 72 of file ChemicalReactionsApp.C.

73 {
74  mooseDeprecated("use registerAll instead of associateSyntax");
75  Registry::registerActionsTo(action_factory, {"ChemicalReactionsApp"});
76  associateSyntaxInner(syntax, action_factory);
77 }

Referenced by CombinedApp::associateSyntax(), ModulesApp::associateSyntax(), and PorousFlowApp::associateSyntaxDepends().

◆ registerAll()

void ChemicalReactionsApp::registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s 
)
static

Definition at line 51 of file ChemicalReactionsApp.C.

52 {
53  Registry::registerObjectsTo(f, {"ChemicalReactionsApp"});
54  Registry::registerActionsTo(af, {"ChemicalReactionsApp"});
55  associateSyntaxInner(s, af);
56 }

Referenced by ChemicalReactionsApp(), ChemicalReactionsApp__registerAll(), ModulesApp::registerAll(), CombinedApp::registerAll(), ChemicalReactionsTestApp::registerAll(), and PorousFlowApp::registerAll().

◆ registerApps()

void ChemicalReactionsApp::registerApps ( )
static

Definition at line 59 of file ChemicalReactionsApp.C.

60 {
61  registerApp(ChemicalReactionsApp);
62 }

Referenced by ChemicalReactionsApp__registerApps().

◆ registerExecFlags()

void ChemicalReactionsApp::registerExecFlags ( Factory &  factory)
static

Definition at line 80 of file ChemicalReactionsApp.C.

81 {
82  mooseDeprecated("use registerAll instead of registerExecFlags");
83 }

Referenced by CombinedApp::registerExecFlags(), and ModulesApp::registerExecFlags().

◆ registerObjects()

void ChemicalReactionsApp::registerObjects ( Factory &  factory)
static

Definition at line 65 of file ChemicalReactionsApp.C.

66 {
67  mooseDeprecated("use registerAll instead of registerObjects");
68  Registry::registerObjectsTo(factory, {"ChemicalReactionsApp"});
69 }

Referenced by PorousFlowApp::registerObjectDepends(), CombinedApp::registerObjects(), and ModulesApp::registerObjects().


The documentation for this class was generated from the following files:
ChemicalReactionsApp
Definition: ChemicalReactionsApp.h:19
associateSyntaxInner
static void associateSyntaxInner(Syntax &syntax, ActionFactory &)
Definition: ChemicalReactionsApp.C:40
ChemicalReactionsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: ChemicalReactionsApp.C:51