Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Control/UnitTest/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 UnitTest's command line parser 9 : : \details This file declares the command-line argument parser for the unit 10 : : test suite, UnitTest. 11 : : */ 12 : : // ***************************************************************************** 13 : : #ifndef UnitTestCmdLineParser_h 14 : : #define UnitTestCmdLineParser_h 15 : : 16 : : #include "StringParser.hpp" 17 : : #include "UnitTest/CmdLine/CmdLine.hpp" 18 : : 19 : : namespace tk { class Print; } 20 : : 21 : : namespace unittest { 22 : : 23 : : //! \brief Command-line parser for UnitTest. 24 : : //! \details This class is used to interface with PEGTL, for the purpose of 25 : : //! parsing command-line arguments for the unit test suite, UnitTest. 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 : : bool& helped ); 35 : : }; 36 : : 37 : : } // unittest:: 38 : : 39 : : #endif // UnitTestCmdLineParser_h