BioSignalPi  v2
bluetoothmenu.h
Go to the documentation of this file.
1 #ifndef BLUETOOTHMENU_H
2 #define BLUETOOTHMENU_H
3 
4 #include "basemenu.h"
10 class BluetoothMenu : public BaseMenu
11 {
12 public:
13  BluetoothMenu();
14  virtual ~BluetoothMenu(){};
19  virtual AbstractMenu *newMenu();
20 
21 };
22 
23 #endif // BLUETOOTHMENU_H
24 
25 
Homepage of the Menu-system for the PiFace GUI.
Definition: basemenu.h:9
virtual ~BluetoothMenu()
Definition: bluetoothmenu.h:14
Abstract menu object for PiFace CAD.
Definition: abstractmenu.h:17
virtual AbstractMenu * newMenu()
Does nothing.
The BluetoothMenu class.
Definition: bluetoothmenu.h:10