]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCache.h
Move Inset::Code to InsetCode.h
[lyx.git] / src / graphics / GraphicsCache.h
index dbd3d6286d2a909545881ae7cdc2b5e830670136..bf4a4ffe8058d93188cf089f0e4eb0c2acaf5564 100644 (file)
 #ifndef GRAPHICSCACHE_H
 #define GRAPHICSCACHE_H
 
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
 #include <boost/scoped_ptr.hpp>
 #include <boost/shared_ptr.hpp>
 
 #include <vector>
+#include <string>
 
 
 namespace lyx {
+
+namespace support { class FileName; }
+
 namespace graphics {
 
 class CacheItem;
@@ -45,13 +49,13 @@ public:
        std::vector<std::string> loadableFormats() const;
 
        /// Add a graphics file to the cache.
-       void add(std::string const & file) const;
+       void add(support::FileName const & file) const;
 
        /// Remove a file from the cache.
-       void remove(std::string const & file) const;
+       void remove(support::FileName const & file) const;
 
        /// Returns \c true if the file is in the cache.
-       bool inCache(std::string const & file) const;
+       bool inCache(support::FileName const & file) const;
 
        /** Get the cache item associated with file.
         *  Returns an empty container if there is no such item.
@@ -65,7 +69,7 @@ public:
         */
        typedef boost::shared_ptr<CacheItem> ItemPtr;
        ///
-       ItemPtr const item(std::string const & file) const;
+       ItemPtr const item(support::FileName const & file) const;
 
 private:
        /** Make the c-tor, d-tor private so we can control how many objects