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 : #ifdef MOOSE_MFEM_ENABLED 11 : 12 : #include "MFEMIntegratedBC.h" 13 : 14 : InputParameters 15 43222 : MFEMIntegratedBC::validParams() 16 : { 17 43222 : InputParameters params = MFEMBoundaryCondition::validParams(); 18 43222 : return params; 19 : } 20 : 21 36 : MFEMIntegratedBC::MFEMIntegratedBC(const InputParameters & parameters) 22 36 : : MFEMBoundaryCondition(parameters) 23 : { 24 36 : } 25 : 26 : #endif