]> git.lyx.org Git - lyx.git/blobdiff - src/support/filetools.h
Move two minizip functions from filetools.cpp to its own file minizip/zipunzip.cpp...
[lyx.git] / src / support / filetools.h
index 150202106937904ae85474a728e10e987cdb5ca3..25445a47bb491b5660f0ad24cbc0dddaf37541b8 100644 (file)
@@ -314,13 +314,17 @@ typedef std::pair<int, std::string> cmd_ret;
 
 cmd_ret const runCommand(std::string const & cmd);
 
+} // namespace support
+} // namespace lyx
+
+/// The following functions are implemented in minizip/zipunzip.cpp, and are not in
+/// the lyx::support namespace
+
 /// zip several files to a zipfile. In-zip filenames are also specified
-bool zipFiles(DocFileName const & zipfile, std::vector<std::pair<std::string, std::string> > const & files);
+bool zipFiles(std::string const & zipfile, std::vector<std::pair<std::string, std::string> > const & files);
 
 /// Unzip a zip file to a directory
 bool unzipToDir(std::string const & zipfile, std::string const & path);
 
-} // namespace support
-} // namespace lyx
 
 #endif