2011-06-26 08:30:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
SleepLib Event Class Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#include "event.h"
|
|
|
|
|
2011-07-02 14:35:50 +00:00
|
|
|
Event::Event(qint64 time,MachineCode code, EventDataType * data, int fields)
|
2011-06-26 08:30:44 +00:00
|
|
|
:e_time(time),e_code(code)
|
|
|
|
{
|
|
|
|
e_fields=fields;
|
|
|
|
for (int i=0; i<fields; i++) {
|
|
|
|
e_data.push_back(data[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
Event::~Event()
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|