Files
sf_daq_buffer/src/RestApi.hpp
T
2018-02-07 16:53:58 +01:00

11 lines
181 B
C++

#ifndef REST_INTERFACE_H
#define REST_INTERFACE_H
#include "WriterManager.hpp"
namespace RestApi
{
void start_rest_api(WriterManager& writer_manager, uint16_t port);
}
#endif