mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
20 lines
233 B
C++
20 lines
233 B
C++
#ifndef RECORD_H
|
|
#define RECORD_H
|
|
|
|
#include "fluxmap.h"
|
|
|
|
class RawRecord
|
|
{
|
|
public:
|
|
RawRecord() {}
|
|
|
|
Fluxmap::Position position;
|
|
nanoseconds_t clock = 0;
|
|
int physicalTrack = 0;
|
|
int physicalSide = 0;
|
|
Bytes data;
|
|
};
|
|
|
|
#endif
|
|
|