Skip to content
Snippets Groups Projects
Commit a3a4e6b6 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

regenerate

parent 490eb8f1
No related branches found
No related tags found
1 merge request!707Split serializer
Pipeline #57767 passed
...@@ -1073,6 +1073,11 @@ Returns the concatenation of two std::vectors. ...@@ -1073,6 +1073,11 @@ Returns the concatenation of two std::vectors.
Returns extension of given filename. \"/home/user/filename.int\" -> \".int\", \"/home/user/filename.int.gz\" -> \".gz\" Returns extension of given filename. \"/home/user/filename.int\" -> \".int\", \"/home/user/filename.int.gz\" -> \".gz\"
"; ";
%feature("docstring") BaseUtils::Filesystem::hasExtension "bool BaseUtils::Filesystem::hasExtension(const std::string &path, const std::string &ref_extension)
Returns true if extension of path, converted to lower case, matches given reference extension.
";
%feature("docstring") BaseUtils::Filesystem::extensions "std::string BaseUtils::Filesystem::extensions(const std::string &path) %feature("docstring") BaseUtils::Filesystem::extensions "std::string BaseUtils::Filesystem::extensions(const std::string &path)
Returns extension(s) of given filename. \"/home/user/filename.int\" -> \".int\", \"/home/user/filename.int.gz\" -> \".int.gz\" Returns extension(s) of given filename. \"/home/user/filename.int\" -> \".int\", \"/home/user/filename.int.gz\" -> \".int.gz\"
......
...@@ -2863,13 +2863,6 @@ Does name contain *.gz extension? ...@@ -2863,13 +2863,6 @@ Does name contain *.gz extension?
Returns true if name contains *.bz2 extension. Returns true if name contains *.bz2 extension.
"; ";
%feature("docstring") DataUtils::Format::GetFileMainExtension "std::string DataUtils::Format::GetFileMainExtension(const std::string &name)
Returns file extension after stripping '.gz' if any.
Returns file main extension (without .gz).
";
%feature("docstring") DataUtils::Format::isIntFile "bool DataUtils::Format::isIntFile(const std::string &file_name) %feature("docstring") DataUtils::Format::isIntFile "bool DataUtils::Format::isIntFile(const std::string &file_name)
Returns true if file name corresponds to BornAgain native format (compressed or not) Returns true if file name corresponds to BornAgain native format (compressed or not)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment