Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 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 "EmptyAction.h" 11 : 12 : registerMooseAction("MooseApp", EmptyAction, "no_action"); 13 : 14 : registerMooseAction("MooseApp", EmptyAction, "ready_to_init"); 15 : 16 : registerMooseAction("MooseApp", EmptyAction, "finish_input_file_output"); 17 : 18 : InputParameters 19 1156690 : EmptyAction::validParams() 20 : { 21 1156690 : InputParameters params = Action::validParams(); 22 1156690 : return params; 23 : } 24 : 25 62696 : EmptyAction::EmptyAction(const InputParameters & params) : Action(params) {} 26 : 27 : void 28 175685 : EmptyAction::act() 29 : { 30 175685 : }