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 "SlopeReconstruction1DInterface.h" 11 : 12 : template <> 13 : typename SlopeReconstruction1DInterface<true>::ESlopeReconstructionType 14 15044 : THM::stringToEnum(const std::string & s) 15 : { 16 15044 : return stringToEnum<SlopeReconstruction1DInterface<true>::ESlopeReconstructionType>( 17 15044 : s, SlopeReconstruction1DInterface<true>::_slope_reconstruction_type_to_enum); 18 : } 19 : 20 : template <> 21 : typename SlopeReconstruction1DInterface<false>::ESlopeReconstructionType 22 0 : THM::stringToEnum(const std::string & s) 23 : { 24 0 : return stringToEnum<SlopeReconstruction1DInterface<false>::ESlopeReconstructionType>( 25 0 : s, SlopeReconstruction1DInterface<false>::_slope_reconstruction_type_to_enum); 26 : }