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

#include <MiscApp.h>

Inheritance diagram for MiscApp:
[legend]

Public Member Functions

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

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 MiscApp.h.

Constructor & Destructor Documentation

◆ MiscApp()

MiscApp::MiscApp ( const InputParameters &  parameters)

Definition at line 29 of file MiscApp.C.

29  : MooseApp(parameters)
30 {
31  MiscApp::registerAll(_factory, _action_factory, _syntax);
32 }

◆ ~MiscApp()

MiscApp::~MiscApp ( )
virtual

Definition at line 34 of file MiscApp.C.

34 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 56 of file MiscApp.C.

57 {
58  Registry::registerActionsTo(action_factory, {"MiscApp"});
59 }

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

◆ registerAll()

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

Definition at line 37 of file MiscApp.C.

38 {
39  Registry::registerObjectsTo(f, {"MiscApp"});
40  Registry::registerActionsTo(af, {"MiscApp"});
41 }

Referenced by MiscApp(), MiscApp__registerAll(), MiscTestApp::registerAll(), ModulesApp::registerAll(), and CombinedApp::registerAll().

◆ registerApps()

void MiscApp::registerApps ( )
static

Definition at line 44 of file MiscApp.C.

45 {
46  registerApp(MiscApp);
47 }

Referenced by MiscApp__registerApps().

◆ registerExecFlags()

void MiscApp::registerExecFlags ( Factory &  factory)
static

Definition at line 62 of file MiscApp.C.

63 {
64 }

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

◆ registerObjects()

void MiscApp::registerObjects ( Factory &  factory)
static

Definition at line 50 of file MiscApp.C.

51 {
52  Registry::registerObjectsTo(factory, {"MiscApp"});
53 }

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


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