CmdLineOptParser.h 1.13 KB
Newer Older
1
2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4
5
6
7
8
9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10
11

/// @file
12
13
/// @brief  Command line option parser declaration
/// @author Don Gagne <don@thegagnes.com>
Don Gagne's avatar
Don Gagne committed
14

15
#pragma once
Don Gagne's avatar
Don Gagne committed
16

Don Gagne's avatar
Don Gagne committed
17
#include <QString>
Don Gagne's avatar
Don Gagne committed
18
19
20
21
#include <cstring>

/// @brief Structure used to pass command line options to the ParseCmdLineOptions function.
typedef struct {
22
23
    const char* optionStr;      ///< Command line option, for example "--foo"
    bool*       optionFound;    ///< If option is found this variable will be set to true
Don Gagne's avatar
Don Gagne committed
24
    QString*    optionArg;      ///< Option has additional argument, form is option:arg
Don Gagne's avatar
Don Gagne committed
25
26
27
28
29
30
31
32
} CmdLineOpt_t;

void ParseCmdLineOptions(int&           argc,
                         char*          argv[],
                         CmdLineOpt_t*  prgOpts,
                         size_t         cOpts,
                         bool           removeParsedOptions);