]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCache.h
Move Inset::Code to InsetCode.h
[lyx.git] / src / graphics / GraphicsCache.h
index 1e0f0eb09bbe1390c14007ef54a1b5b42cb3ffb4..bf4a4ffe8058d93188cf089f0e4eb0c2acaf5564 100644 (file)
@@ -1,32 +1,37 @@
 // -*- C++ -*-
 /**
- *  \file GraphicsCache.h
+ * \file GraphicsCache.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author Baruch Even
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  *
- *  grfx::Cache is the manager of the image cache.
- *  It is responsible for creating the grfx::CacheItem's and maintaining them.
+ * lyx::graphics::Cache is the manager of the image cache.
+ * It is responsible for creating the lyx::graphics::CacheItem's
+ * and maintaining them.
  *
- *  grfx::Cache is a singleton class. It is possible to have only one
- *  instance of it at any moment.
+ * lyx::graphics::Cache is a singleton class. It is possible to have only one
+ * instance of it at any moment.
  */
 
 #ifndef GRAPHICSCACHE_H
 #define GRAPHICSCACHE_H
 
-#include "LString.h"
-#include <vector>
-#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;
@@ -41,16 +46,16 @@ public:
         *  Other formats can be loaded if a converter to a loadable format
         *  can be defined.
         */
-       std::vector<string> loadableFormats() const;
+       std::vector<std::string> loadableFormats() const;
 
        /// Add a graphics file to the cache.
-       void add(string const & file) const;
+       void add(support::FileName const & file) const;
 
        /// Remove a file from the cache.
-       void remove(string const & file) const;
+       void remove(support::FileName const & file) const;
 
        /// Returns \c true if the file is in the cache.
-       bool inCache(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.
@@ -64,7 +69,7 @@ public:
         */
        typedef boost::shared_ptr<CacheItem> ItemPtr;
        ///
-       ItemPtr const item(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