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

#include <ContactApp.h>

Inheritance diagram for ContactApp:
[legend]

Public Member Functions

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

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

Constructor & Destructor Documentation

◆ ContactApp()

ContactApp::ContactApp ( const InputParameters &  parameters)

Definition at line 31 of file ContactApp.C.

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

◆ ~ContactApp()

ContactApp::~ContactApp ( )
virtual

Definition at line 36 of file ContactApp.C.

36 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 78 of file ContactApp.C.

79 {
80  mooseDeprecated("use registerAll instead of associateSyntax");
81  Registry::registerActionsTo(action_factory, {"ContactApp"});
82  associateSyntaxInner(syntax, action_factory);
83 }

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

◆ registerAll()

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

Definition at line 57 of file ContactApp.C.

58 {
59  Registry::registerObjectsTo(f, {"ContactApp"});
60  Registry::registerActionsTo(af, {"ContactApp"});
61  associateSyntaxInner(s, af);
62 }

Referenced by ContactApp(), ContactApp__registerAll(), ContactTestApp::registerAll(), ModulesApp::registerAll(), and CombinedApp::registerAll().

◆ registerApps()

void ContactApp::registerApps ( )
static

Definition at line 65 of file ContactApp.C.

66 {
67  registerApp(ContactApp);
68 }

Referenced by ContactApp__registerApps().

◆ registerExecFlags()

void ContactApp::registerExecFlags ( Factory &  factory)
static

Definition at line 86 of file ContactApp.C.

87 {
88 }

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

◆ registerObjects()

void ContactApp::registerObjects ( Factory &  factory)
static

Definition at line 71 of file ContactApp.C.

72 {
73  mooseDeprecated("use registerAll instead of registerObjects");
74  Registry::registerObjectsTo(factory, {"ContactApp"});
75 }

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


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