mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-08 16:32:02 +02:00
16 lines
201 B
C++
16 lines
201 B
C++
|
|
#include "include/PacketBuffer.hpp"
|
|
|
|
|
|
struct DummyContainer{
|
|
uint64_t index;
|
|
uint64_t timestamp;
|
|
uint16_t data[32];
|
|
};
|
|
|
|
|
|
int main (int argc, char *argv[]) {
|
|
PacketBuffer<DummyContainer, 64> b;
|
|
|
|
}
|