dRonin  adbada4
dRonin GCS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Groups Pages
taulink.h
Go to the documentation of this file.
1 
12 /*
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful, but
19  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  * for more details.
22  *
23  * You should have received a copy of the GNU General Public License along
24  * with this program; if not, see <http://www.gnu.org/licenses/>
25  */
26 #ifndef TAULINK_H
27 #define TAULINK_H
28 
29 #include <coreplugin/iboardtype.h>
31 #include "hwtaulink.h"
32 
33 class IBoardType;
34 
35 class TauLink : public Core::IBoardType
36 {
37 public:
38  TauLink();
39  virtual ~TauLink();
40 
41  virtual QString shortName();
42  virtual QString boardDescription();
43  virtual bool queryCapabilities(BoardCapabilities capability);
44  virtual QPixmap getBoardPicture();
45  virtual QString getHwUAVO();
46  HwTauLink *getSettings();
47 
48 private:
49  UAVObjectUtilManager *uavoUtilManager;
50 };
51 
52 #endif // TAULINK_H
BoardCapabilities
Types of capabilities boards can support.
Definition: iboardtype.h:92
HwTauLink * getSettings()
Get the settings object.
Definition: taulink.cpp:94
virtual ~TauLink()
Definition: taulink.cpp:57
virtual QString boardDescription()
Definition: taulink.cpp:66
TauLink()
TauLink::TauLink This is the PipXtreme radio modem definition.
Definition: taulink.cpp:38
virtual QString getHwUAVO()
Definition: taulink.cpp:88
virtual QPixmap getBoardPicture()
getBoardPicture
Definition: taulink.cpp:83
virtual bool queryCapabilities(BoardCapabilities capability)
Return which capabilities this board has.
Definition: taulink.cpp:72
virtual QString shortName()
Definition: taulink.cpp:61