Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/Walker/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 Walker's command line parser 9 : : \details Walker's command line parser 10 : : */ 11 : : // ***************************************************************************** 12 : : #ifndef WalkerCmdLineParser_h 13 : : #define WalkerCmdLineParser_h 14 : : 15 : : #include "StringParser.hpp" 16 : : #include "Walker/CmdLine/CmdLine.hpp" 17 : : 18 : : namespace tk { class Print; } 19 : : 20 : : namespace walker { 21 : : 22 : : //! CmdLineParser : StringParser 23 : 0 : class CmdLineParser : public tk::StringParser { 24 : : 25 : : public: 26 : : //! Constructor 27 : : explicit CmdLineParser( int argc, char** argv, 28 : : const tk::Print& print, 29 : : ctr::CmdLine& cmdline ); 30 : : }; 31 : : 32 : : } // walker:: 33 : : 34 : : #endif // WalkerCmdLineParser_h