diff options
Diffstat (limited to 'slicer/tool/parser.h')
-rw-r--r-- | slicer/tool/parser.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/slicer/tool/parser.h b/slicer/tool/parser.h index 5be5fbb..139cd32 100644 --- a/slicer/tool/parser.h +++ b/slicer/tool/parser.h @@ -2,7 +2,7 @@ #define SLICER_PARSER_H #include <Slice/Parser.h> -#include <boost/filesystem/path.hpp> +#include <filesystem> #include <visibility.h> namespace Slicer { @@ -23,10 +23,10 @@ namespace Slicer { Slicer(); FILE * cpp; - boost::filesystem::path slicePath; - boost::filesystem::path cppPath; - boost::filesystem::path headerPrefix; - std::vector<boost::filesystem::path> includes; + std::filesystem::path slicePath; + std::filesystem::path cppPath; + std::filesystem::path headerPrefix; + std::vector<std::filesystem::path> includes; unsigned int Execute(); unsigned int Components() const; |