CortidQCT  1.2.2.52
filesystem.h
Go to the documentation of this file.
1 
13 #if __has_include(<filesystem>)
14 # include <filesystem>
15 #elif __has_include(<experimental/filesystem>)
16 
17 # include <experimental/filesystem>
18 
19 namespace std {
20 namespace filesystem = experimental::filesystem;
21 }
22 
23 #else
24 
25 # error "CortidQCT requires a standard library with filesystem support"
26 
27 #endif
Definition: ColorToLabelMap.h:27