Move to forward declare header

This commit is contained in:
Patrick Niklaus
2017-04-04 23:54:30 +00:00
committed by Patrick Niklaus
parent 4ec7ca29f1
commit 0072bf0c59
9 changed files with 28 additions and 66 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef OSRM_STORAGE_IO_FWD_HPP_
#define OSRM_STORAGE_IO_FWD_HPP_
namespace osrm
{
namespace storage
{
namespace io
{
class FileReader;
class FileWriter;
} // ns io
} // ns storage
} // ns osrm
#endif