1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

OP-1150/OP-1068 Fix headers for wizard infrastructure

This commit is contained in:
Alessio Morale 2014-01-11 23:12:14 +01:00
parent ce2113f912
commit 39f3d36e09
4 changed files with 108 additions and 0 deletions

View File

@ -1,3 +1,30 @@
/**
******************************************************************************
*
* @file wizardmodel.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2013.
*
* @brief A fsm state machine model used in wizard like UIs
* @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
*/
#include "wizardmodel.h"
WizardModel::WizardModel(QObject *parent) :

View File

@ -1,3 +1,30 @@
/**
******************************************************************************
*
* @file wizardmodel.c
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2013.
*
* @brief A fsm state machine model used in wizard like UIs
* @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 WIZARDMODEL_H
#define WIZARDMODEL_H

View File

@ -1,3 +1,30 @@
/**
******************************************************************************
*
* @file wizardstate.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2013.
*
* @brief A fsm state used in wizard like UI
* @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
*/
#include "wizardstate.h"
WizardState::WizardState(QString name, QState *parent) :

View File

@ -1,3 +1,30 @@
/**
******************************************************************************
*
* @file wizardstate.c
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2013.
*
* @brief A fsm state used in wizard like UI
* @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 WIZARDSTATE_H
#define WIZARDSTATE_H