]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsConverter.h
rename/merge LyXLength related stuff
[lyx.git] / src / graphics / GraphicsConverter.h
index 30021cbf1afc28a1371b551c96476954ed9c54d3..d69c13fceff8cb861b7cee53a8438273eb6cd26a 100644 (file)
@@ -22,6 +22,9 @@
 #include <boost/utility.hpp>
 
 namespace lyx {
+
+namespace support { class FileName; }
+
 namespace graphics {
 
 class Converter : boost::noncopyable {
@@ -33,7 +36,7 @@ public:
        /** One Converter per conversion ensures that the (hidden) signal
         *  is always connected to the expected slot.
         */
-       Converter(std::string const & from_file,   std::string const & to_file_base,
+       Converter(support::FileName const & from_file, std::string const & to_file_base,
                  std::string const & from_format, std::string const & to_format);
 
        /// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy.
@@ -56,7 +59,7 @@ public:
         *  If conversion fails or has not been completed, however, it
         *  returns an empty string.
         */
-       std::string const & convertedFile() const;
+       support::FileName const & convertedFile() const;
 
 private:
        /// Use the Pimpl idiom to hide the internals.