Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/MeshConv/CmdLine/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 MeshConv's command line parser 9 : : \details This file declares the command-line argument parser for the mesh 10 : : file converter, MeshConv. 11 : : */ 12 : : // ***************************************************************************** 13 : : #ifndef MeshConvCmdLineParser_h 14 : : #define MeshConvCmdLineParser_h 15 : : 16 : : #include "StringParser.hpp" 17 : : #include "MeshConv/CmdLine/CmdLine.hpp" 18 : : 19 : : namespace tk { class Print; } 20 : : 21 : : namespace meshconv { 22 : : 23 : : //! \brief Command-line parser for MeshConv. 24 : : //! \details This class is used to interface with PEGTL, for the purpose of 25 : : //! parsing command-line arguments for the mesh converter, MeshConv. 26 : 0 : class CmdLineParser : public tk::StringParser { 27 : : 28 : : public: 29 : : //! Constructor 30 : : explicit CmdLineParser( int argc, 31 : : char** argv, 32 : : const tk::Print& print, 33 : : ctr::CmdLine& cmdline ); 34 : : }; 35 : : 36 : : } // meshconv:: 37 : : 38 : : #endif // MeshConvCmdLineParser_h