1 // SWIG file Path.i
2 
3 %{
4 #include "openturns/Path.hxx"
5 %}
6 
7 %include Path_doc.i
8 
9 %template(DirectoryList) std::vector<OT::FileName>;
10 
11 %nodefaultctor Path;
12 
13 // these are available in tempfile or os
14 %ignore OT::Path::GetTemporaryDirectory;
15 %ignore OT::Path::BuildTemporaryFileName;
16 %ignore OT::Path::CreateTemporaryDirectory;
17 %ignore OT::Path::FindFileByNameInDirectoryList;
18 %ignore OT::Path::EscapeBackslash;
19 
20 %include openturns/Path.hxx
21