BioSignalPi  v2
ecgcapturemenu.h
Go to the documentation of this file.
1 #ifndef ECGCAPTUREMENU_H
2 #define ECGCAPTUREMENU_H
3 
4 #include "basemenu.h"
5 #include "../datalogger.h"
6 #include "../devicemanager.h"
7 
14 class EcgCaptureMenu : public BaseMenu
15 {
16 public:
18  virtual ~EcgCaptureMenu(){};
24  virtual AbstractMenu *newMenu();
25 private:
26  DeviceManager* device;
27  DataStream* stream;
28  DataLogger* logger;
29 };
30 
31 #endif // ECGCAPTUREMENU_H
32 
33 
34 
35 
Homepage of the Menu-system for the PiFace GUI.
Definition: basemenu.h:9
The DataLogger class.
Definition: datalogger.h:16
Menu were the user can chosse between SettingsMenu or starting ECG-capture The start menu starts the ...
Abstract menu object for PiFace CAD.
Definition: abstractmenu.h:17
Abstract Interface that should be used for storing data in the memory.
Definition: datastream.h:16
virtual AbstractMenu * newMenu()
Enter SettingsMenu for case 0 and starts DeviceManager and EcgCapture for case 1. ...
virtual ~EcgCaptureMenu()
Handles which device to connect through the DeviceInterface.
Definition: devicemanager.h:23