mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 04:54:36 +02:00
12 lines
231 B
C++
12 lines
231 B
C++
#ifndef WRITERUTILS_H
|
|
#define WRITERUTILS_H
|
|
|
|
#include <string>
|
|
|
|
namespace WriterUtils {
|
|
void set_process_effective_id(int user_id);
|
|
void create_destination_folder(const std::string& output_file);
|
|
}
|
|
|
|
#endif // WRITERUTILS_H
|