mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-08 10:32:03 +02:00
Add stub implementation of RamBufferWriter
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef SF_DAQ_BUFFER_RAMBUFFERWRITER_HPP
|
||||
#define SF_DAQ_BUFFER_RAMBUFFERWRITER_HPP
|
||||
|
||||
#include <string>
|
||||
|
||||
class RamBufferWriter {
|
||||
const int module_n_;
|
||||
const std::string detector_name_;
|
||||
|
||||
int shm_fd_;
|
||||
|
||||
public:
|
||||
RamBufferWriter(const std::string& detector_name,
|
||||
const int module_n,
|
||||
const size_t n_modules,
|
||||
const size_t n_slots);
|
||||
~RamBufferWriter();
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //SF_DAQ_BUFFER_RAMBUFFERWRITER_HPP
|
||||
Reference in New Issue
Block a user