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