OSCAR-code/SleepLib/event.h

42 lines
906 B
C
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
SleepLib Event Class Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef EVENT_H
#define EVENT_H
#include <QDateTime>
#include "machine_common.h"
2011-07-21 11:02:23 +00:00
typedef float EventDataType;
2011-06-26 08:30:44 +00:00
class Event
{
friend class Session;
public:
Event(qint64 time,MachineCode code,EventDataType * data,int fields);
2011-06-26 08:30:44 +00:00
~Event();
EventDataType operator[](short i) {
if (i<e_fields) return e_data[i];
else return 0;
};
const qint64 & time() {
2011-06-26 08:30:44 +00:00
return e_time;
};
MachineCode code() {
return e_code;
};
short fields() {
return e_fields;
};
protected:
qint64 e_time;
2011-06-26 08:30:44 +00:00
MachineCode e_code;
short e_fields;
vector<EventDataType> e_data;
};
#endif // EVENT_H