10 lines
177 B
C++
10 lines
177 B
C++
|
|
#ifndef _FC_FILESYSTEM_HPP_
|
||
|
|
#define _FC_FILESYSTEM_HPP_
|
||
|
|
#include <boost/filesystem.hpp>
|
||
|
|
|
||
|
|
namespace fc {
|
||
|
|
typedef boost::filesystem::path path;
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // _FC_FILESYSTEM_HPP_
|