]> git.lyx.org Git - lyx.git/blobdiff - src/converter.h
Implement os::current_root for native Win32 builds.
[lyx.git] / src / converter.h
index 3945dd5c3b1a7864a37a6fb706faaf2452a887aa..bfdb26f788ca7cd4e5a0bd0e944d7ea57b8b86e0 100644 (file)
@@ -97,7 +97,7 @@ public:
        std::vector<Format const *> const
        getReachable(std::string const & from, bool only_viewable,
                     bool clear_visited);
-       ///
+       /// Does a conversion path from format \p from to format \p to exist?
        bool isReachable(std::string const & from, std::string const & to);
        ///
        Graph::EdgePath const getPath(std::string const & from, std::string const & to);
@@ -141,8 +141,11 @@ private:
        ConverterList converterlist_;
        ///
        std::string latex_command_;
-       ///
-       bool move(std::string const & from, std::string const & to, bool copy);
+       /// If \p from = /path/file.ext and \p to = /path2/file2.ext2 then
+       /// this method moves each /path/file*.ext file to /path2/file2*.ext2
+       bool move(std::string const & fmt,
+                 std::string const & from, std::string const & to,
+                 bool copy);
        ///
        Graph G_;
 };