17 lines
339 B
C++
17 lines
339 B
C++
// Copyright (2019-2024) Paul Scherrer Institute
|
|
|
|
#ifndef JFJOCH_ZMQPREVIEWSETTINGS_H
|
|
#define JFJOCH_ZMQPREVIEWSETTINGS_H
|
|
|
|
#include <optional>
|
|
#include <chrono>
|
|
|
|
struct ZMQPreviewSettings {
|
|
std::optional<std::chrono::microseconds> period;
|
|
std::string address;
|
|
bool send_start_message;
|
|
};
|
|
|
|
|
|
#endif //JFJOCH_ZMQPREVIEWSETTINGS_H
|