osrm-backend/include/storage/io_fwd.hpp
Dennis Luxen a4aa153ba4 Use nested namespace
It's a mechanical change to modernize the code base
2022-12-11 10:17:17 +01:00

13 lines
163 B
C++

#ifndef OSRM_STORAGE_IO_FWD_HPP_
#define OSRM_STORAGE_IO_FWD_HPP_
namespace osrm::storage::io
{
class FileReader;
class FileWriter;
} // namespace osrm
#endif