@param Path template. The last six characters must be XXXXXX.
     @param error Will contain the error if the return value is false [optional]
     @return Name of new directory or empty string on error.
+
+    @seealso: classes in tmpfstream which offers funktionality based on mkstemp
 */
 std::string mkdtemp(const std::string &path_template, std::string *error)
 {
 
                       std::string *error=NULL);
 
 std::string mkdtemp(const std::string &path_template, std::string *error=NULL);
+// mkstemp: see tmpfstream
+
 bool mkdir(const std::string &path, const mode_t &mode=0700, std::string *error=NULL);
 bool rmdir(const std::string &path, std::string *error=NULL);