CbmRoot
Loading...
Searching...
No Matches
Filesystem.h
Go to the documentation of this file.
1/* Copyright (C) 2023 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Felix Weiglhofer [committer] */
4#ifndef CBM_ALGO_BASE_FILESYSTEM_H
5#define CBM_ALGO_BASE_FILESYSTEM_H
6
7#include <boost/filesystem.hpp>
8
9namespace cbm::algo
10{
11
12 // Use boost::filesystem by default instead of std::filesystem for
13 // compatibility with older compilers and ROOT versions
14 namespace fs = boost::filesystem;
15
16} // namespace cbm::algo
17
18#endif // CBM_ALGO_BASE_FILESYSTEM_H