runDevice: remove const from getDevice parameter

This commit is contained in:
Alexey Rybalchenko
2021-05-13 21:52:58 +02:00
committed by Dennis Klein
parent e6f67b3658
commit a7dbeadd1c
7 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@
#include <memory>
// to be implemented by the user to return a child class of FairMQDevice
std::unique_ptr<fair::mq::Device> getDevice(const fair::mq::ProgOptions& config);
std::unique_ptr<fair::mq::Device> getDevice(fair::mq::ProgOptions& config);
// to be implemented by the user to add custom command line options (or just with empty body)
void addCustomOptions(boost::program_options::options_description&);