00001 00016 #pragma once 00017 00018 #include <boost/filesystem/operations.hpp> 00019 #include <boost/filesystem/convenience.hpp> 00020 00021 namespace boost { 00022 namespace filesystem { 00023 00024 #if defined (UNICODE) || defined (_UNICODE) 00025 00026 typedef wpath tpath; 00027 00028 #else 00029 00030 typedef path tpath; 00031 00032 #endif 00033 } 00034 }