1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-22 07:52:12 +01:00
stac 7195862d77 build: Move openpilotgcs into its own subdirectory
This will allow us to build a parent project for
qt-creator that sits above both openpilotgcs and
uavobjgenerator so that we can build both projects
at the same time.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
2011-01-22 17:40:26 +00:00

84 lines
2.5 KiB
C++

/**
******************************************************************************
*
* @file optionsparser.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
* Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
* @brief
* @see The GNU Public License (GPL) Version 3
* @defgroup
* @{
*
*****************************************************************************/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef OPTIONSPARSER_H
#define OPTIONSPARSER_H
#include "pluginmanager_p.h"
#include <QtCore/QStringList>
#include <QtCore/QMap>
namespace ExtensionSystem {
namespace Internal {
class OptionsParser
{
public:
OptionsParser(const QStringList &args,
const QMap<QString, bool> &appOptions,
QMap<QString, QString> *foundAppOptions,
QString *errorString,
PluginManagerPrivate *pmPrivate);
bool parse();
static const char *NO_LOAD_OPTION;
static const char *TEST_OPTION;
private:
// return value indicates if the option was processed
// it doesn't indicate success (--> m_hasError)
bool checkForEndOfOptions();
bool checkForNoLoadOption();
bool checkForTestOption();
bool checkForAppOption();
bool checkForPluginOption();
bool checkForUnknownOption();
enum TokenType { OptionalToken, RequiredToken };
bool nextToken(TokenType type = OptionalToken);
const QStringList &m_args;
const QMap<QString, bool> &m_appOptions;
QMap<QString, QString> *m_foundAppOptions;
QString *m_errorString;
PluginManagerPrivate *m_pmPrivate;
// state
QString m_currentArg;
QStringList::const_iterator m_it;
QStringList::const_iterator m_end;
bool m_isDependencyRefreshNeeded;
bool m_hasError;
};
} // namespace Internal
} // namespace ExtensionSystem
#endif // OPTIONSPARSER_H