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 "ParallelParamObject.h" 11 : 12 : #include "MooseApp.h" 13 : 14 5213724 : ParallelParamObject::ParallelParamObject(const std::string & type, 15 : const std::string & name, 16 : MooseApp & app, 17 5213724 : const InputParameters & params) 18 : : MooseBase(type, name, app, params), 19 : MooseBaseParameterInterface(*this, params), 20 : MooseBaseErrorInterface(static_cast<MooseBase &>(*this)), 21 : ParallelObject(app), 22 5213724 : DataFileInterface(*this) 23 : { 24 5213724 : }