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

#include <RdgApp.h>

Inheritance diagram for RdgApp:
[legend]

Public Member Functions

 RdgApp (InputParameters parameters)
 
virtual ~RdgApp ()
 

Static Public Member Functions

static void registerApps ()
 
static void registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
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 RdgApp.h.

Constructor & Destructor Documentation

◆ RdgApp()

RdgApp::RdgApp ( InputParameters  parameters)

Definition at line 31 of file RdgApp.C.

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

◆ ~RdgApp()

RdgApp::~RdgApp ( )
virtual

Definition at line 36 of file RdgApp.C.

36 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 59 of file RdgApp.C.

60 {
61  mooseDeprecated("use registerAll instead of associateSyntax");
62  Registry::registerActionsTo(action_factory, {"RdgApp"});
63 }

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

◆ registerAll()

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

Definition at line 39 of file RdgApp.C.

40 {
41  Registry::registerObjectsTo(f, {"RdgApp"});
42  Registry::registerActionsTo(af, {"RdgApp"});
43 }

Referenced by RdgApp(), RdgApp__registerAll(), ModulesApp::registerAll(), CombinedApp::registerAll(), and RdgTestApp::registerAll().

◆ registerApps()

void RdgApp::registerApps ( )
static

Definition at line 46 of file RdgApp.C.

47 {
48  registerApp(RdgApp);
49 }

Referenced by RdgApp__registerApps().

◆ registerExecFlags()

void RdgApp::registerExecFlags ( Factory &  factory)
static

Definition at line 66 of file RdgApp.C.

67 {
68  mooseDeprecated("use registerAll instead of registerExecFlags");
69 }

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

◆ registerObjects()

void RdgApp::registerObjects ( Factory &  factory)
static

Definition at line 52 of file RdgApp.C.

53 {
54  mooseDeprecated("use registerAll instead of registerObjects");
55  Registry::registerObjectsTo(factory, {"RdgApp"});
56 }

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


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