close Warning: Can't use blame annotator:
svn blame failed on branches/mavlink/tools/Controller/Mavlink/src/GuiFlair.h: 200029 - Couldn't perform atomic initialization

source: flair-src/branches/mavlink/tools/Controller/Mavlink/src/GuiFlair.h@ 84

Last change on this file since 84 was 84, checked in by Thomas Fuhrmann, 8 years ago

Update MavlinkUDP files and add pause function

File size: 964 bytes
RevLine 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5// created: 2016/09/02
6// filename: GuiFlair.h
7//
8// authors: Thomas Fuhrmann
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Implementation of GuiInterface using Flair
14// communication mechanism
15//
16//
17/*********************************************************************/
18
19#ifndef MAVPLANNER_GUI_FLAIR_H
20#define MAVPLANNER_GUI_FLAIR_H
21
22#include <string>
23
24#include "GuiInterface.h"
25
26namespace flair {
27namespace core {
28 class FrameworkManager;
29}
30}
31
32class GuiFlair : public GuiInterface {
33public:
34
35 GuiFlair(const flair::core::FrameworkManager *parent, std::string name);
36 ~GuiFlair();
37
38protected:
39
40 virtual void MissionStart();
41 virtual void MissionStop();
42 virtual void MissionPause();
43 virtual void MissionSend();
44};
45
46#endif // MAVPLANNER_GUI_FLAIR_H
Note: See TracBrowser for help on using the repository browser.