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 : #pragma once 11 : 12 : // MOOSE includes 13 : #include "MooseBase.h" 14 : #include "MooseBaseParameterInterface.h" 15 : #include "MooseBaseErrorInterface.h" 16 : #include "DataFileInterface.h" 17 : 18 : #include "libmesh/parallel_object.h" 19 : 20 : /** 21 : * Base class shared by both Action and MooseObject. 22 : */ 23 : class ParallelParamObject : public MooseBase, 24 : public MooseBaseParameterInterface, 25 : public MooseBaseErrorInterface, 26 : public libMesh::ParallelObject, 27 : public DataFileInterface 28 : { 29 : public: 30 : ParallelParamObject(const std::string & type, 31 : const std::string & name, 32 : MooseApp & app, 33 : const InputParameters & params); 34 : 35 4868950 : virtual ~ParallelParamObject() = default; 36 : };