Line data Source code
1 : //
2 : // DUNE DAQ modification notice:
3 : // This file has been modified from the original ATLAS oks_utils source for the DUNE DAQ project.
4 : // Fork baseline commit: c2e7dfc7 (2022-03-30).
5 : // Renamed since fork: no.
6 : //
7 :
8 :
9 : #include "oksutils/oks/access.hpp"
10 :
11 : namespace dunedaq {
12 : // JCF, Dec-2-2022: on Andrei Kazarov's recommendation, I stubbed out the origin AccessManager-based code
13 :
14 : bool
15 0 : oksutils::access::is_writable(const oks::OksFile& /*file*/,
16 : const std::string& /*user*/)
17 : {
18 0 : return true;
19 : }
20 : }
|