Exemplo n.º 1
0
 public EdfPlusAnnotationDataBlock(EdfPlusAnnotationListBase owner, int dataRecNr, double dataRecOnset)
 {
     _owner        = owner;
     _dataRecNr    = dataRecNr;
     _dataRecOnset = dataRecOnset;
     _modified     = false;
 }
Exemplo n.º 2
0
 public EdfPlusAnnotation(
     EdfPlusAnnotationListBase owner, int dataRecNr, double onset, double duration, string annotation, int annotationSignalNr)
 {
     FileOrder           = -1;
     _owner              = owner;
     DataRecNr           = dataRecNr;
     _onset              = onset;
     _duration           = duration;
     _annotation         = annotation;
     _annotationSignalNr = annotationSignalNr;
     Modified            = false;
 }
Exemplo n.º 3
0
 public EdfPlusAnnotation(
     EdfPlusAnnotationListBase owner, int dataRecNr, double onset, string annotation, int annotationSignalNr) :
     this(owner, dataRecNr, onset, 0, annotation, annotationSignalNr)
 {
 }
Exemplo n.º 4
0
 public EdfPlusAnnotation(EdfPlusAnnotationListBase owner, int dataRecNr, double onset, string annotation) :
     this(owner, dataRecNr, onset, annotation, 0)
 {
 }
Exemplo n.º 5
0
 public EdfPlusAnnotation(EdfPlusAnnotationListBase owner) : this(owner, 0, 0, string.Empty, -1)
 {
 }