]> git.lyx.org Git - lyx.git/blobdiff - src/format.h
Make the output of \inputencoding commands (and the change of output
[lyx.git] / src / format.h
index 240d5d8a4cc9acbb932a822dca0f803ab822eeab..9c5c32180f9849b4ad5beb8b6e2422cbab15d77f 100644 (file)
 #include "support/docstring.h"
 
 #include <vector>
-#include <string>
 
 
 namespace lyx {
 
+namespace support { class FileName; }
+
 class Buffer;
 
 class Format {
@@ -131,7 +132,7 @@ public:
         * \returns file format if it could be found, otherwise an empty
         * string.
         */
-       std::string getFormatFromFile(std::string const & filename) const;
+       std::string getFormatFromFile(support::FileName const & filename) const;
        /// Set editor and/or viewer to "auto" for formats that can be
        /// opened by the OS.
        void setAutoOpen();
@@ -151,10 +152,10 @@ public:
        ///
        void setViewer(std::string const & name, std::string const & command);
        ///
-       bool view(Buffer const & buffer, std::string const & filename,
+       bool view(Buffer const & buffer, support::FileName const & filename,
                  std::string const & format_name) const;
        ///
-       bool edit(Buffer const & buffer, std::string const & filename,
+       bool edit(Buffer const & buffer, support::FileName const & filename,
                  std::string const & format_name) const;
        ///
        docstring const prettyName(std::string const & name) const;