Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/Inciter/InputDeck/Parser.hpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Inciter's input deck file parser 9 : : \details This file declares the input deck, i.e., control file, parser for 10 : : the computational shock hydrodynamics tool, Inciter. 11 : : */ 12 : : // ***************************************************************************** 13 : : #ifndef InciterInputDeckParser_h 14 : : #define InciterInputDeckParser_h 15 : : 16 : : #include "FileParser.hpp" 17 : : #include "Inciter/CmdLine/CmdLine.hpp" 18 : : 19 : : namespace tk { class Print; } 20 : : 21 : : namespace inciter { 22 : : 23 : : //! \brief Control file parser for Inciter. 24 : : //! \details This class is used to interface with PEGTL, for the purpose of 25 : : //! parsing the control file for the computational shock hydrodynamics tool, 26 : : //! Inciter. 27 : 233 : class InputDeckParser : public tk::FileParser { 28 : : 29 : : public: 30 : : //! Constructor 31 : : explicit InputDeckParser( const tk::Print& print, 32 : : const ctr::CmdLine& cmdline, 33 : : ctr::InputDeck& inputdeck ); 34 : : }; 35 : : 36 : : } // namespace inciter 37 : : 38 : : #endif // InciterInputDeckParser_h