X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.cxx;h=0760f383b929f3daf3ffcdc140a614310baf572a;hb=1a11accd11061d63d3c09db7b1445637207e81e4;hp=897899eb47db15955ea9bc67f2edf50e05c5cf4c;hpb=72911a1e847536580a21f85f211c0a14cdcf944c;p=gdcm.git diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index 897899eb..0760f383 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -179,9 +179,9 @@ void Tokenize (const std::string& str, /////////////////////////////////////////////////////////////////////////// -/* +/** * \brief to prevent a flashing screen when non-printable character - * @param + * @param v characters array to remove non printable characters from */ char *_cleanString(char *v) { char *d; @@ -197,9 +197,9 @@ char *_cleanString(char *v) { } /////////////////////////////////////////////////////////////////////////// -/* +/** * \brief to prevent a flashing screen when non-printable character - * @param + * @param s string to remove non printable characters from */ std::string _CreateCleanString(std::string s) { std::string str=s; @@ -220,9 +220,9 @@ std::string _CreateCleanString(std::string s) { } /////////////////////////////////////////////////////////////////////////// -/* +/** * \brief Add a SEPARATOR to the end of the name is necessary - * @param + * @param name file/directory name to normalize */ void NormalizePath(std::string &name) { @@ -237,9 +237,9 @@ const std::string SEPARATOR = "/"; } /////////////////////////////////////////////////////////////////////////// -/* +/** * \brief Get the (directory) path from a full path file name - * @param + * @param fullName file/directory name to extract Path from */ std::string GetPath(std::string &fullName) { @@ -253,9 +253,9 @@ std::string GetPath(std::string &fullName) } /////////////////////////////////////////////////////////////////////////// -/* +/** * \brief Get the (last) name of a full path file name - * @param + * @param fullName file/directory name to extract end name from */ std::string GetName(std::string &fullName) {