BioSignalPi  v2
datastream.h
Go to the documentation of this file.
1 
2 
3 #ifndef DATASTREAM_H_
4 #define DATASTREAM_H_
5 
6 
7 #include <QVector>
8 #include <QString>
9 #include "ecgstreamobject.h"
10 
16 class DataStream : public QVector<EcgStreamObject> {
17 
18 public:
19  DataStream();
20 
21  virtual ~DataStream();
27  QString toText(int index);
29 
30 
31 
32 
33 };
34 
35 #endif /* DATASTREAM_H_ */
virtual ~DataStream()
Definition: datastream.cpp:8
Abstract Interface that should be used for storing data in the memory.
Definition: datastream.h:16
int samplingRate
Definition: datastream.h:28
QString toText(int index)
Text representation of the Object at index.
Definition: datastream.cpp:13