Skip to content
Snippets Groups Projects
CmdLineOptParser.h 1.17 KiB
Newer Older
  • Learn to ignore specific revisions
  • /****************************************************************************
     *
     *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
     *
     * QGroundControl is licensed according to the terms in the file
     * COPYING.md in the root of the source code directory.
     *
     ****************************************************************************/
    
    
    
    /// @file
    ///     @brief Command line option parser
    ///
    ///     @author Don Gagne <don@thegagnes.com>
    
    #ifndef CMDLINEOPTPARSER_H
    #define CMDLINEOPTPARSER_H
    
    
    #include <QString>
    
    #include <cstring>
    
    /// @brief Structure used to pass command line options to the ParseCmdLineOptions function.
    typedef struct {
    
        const char* optionStr;      ///< command line option, for example "--foo"
        bool*       optionFound;    ///< if option is found this variable will be set to true
    
        QString*    optionArg;      ///< Option has additional argument, form is option:arg
    
    } CmdLineOpt_t;
    
    void ParseCmdLineOptions(int&           argc,
                             char*          argv[],
                             CmdLineOpt_t*  prgOpts,
                             size_t         cOpts,
                             bool           removeParsedOptions);
    
    #endif