]> git.lyx.org Git - lyx.git/blobdiff - src/ConverterCache.h
Change the "empty layout" to the "plain layout", to try to avoid confusion.
[lyx.git] / src / ConverterCache.h
index 4a55810d6f66e28f22a7dd2958b9354613918243..ab4550c1b01c888b116bf7a30d06640a7aca983b 100644 (file)
  *
  * Full author contact details are available in file CREDITS.
  *
- * lyx::ConverterCache is the manager of the file cache.
- * It is responsible for creating the lyx::ConverterCacheItem's
+ * ConverterCache is the manager of the file cache.
+ * It is responsible for creating the ConverterCacheItem's
  * and maintaining them.
  *
- * lyx::ConverterCache is a singleton class. It is possible to have
+ * ConverterCache is a singleton class. It is possible to have
  * only one instance of it at any moment.
  */
 
 #ifndef CONVERTERCACHE_H
 #define CONVERTERCACHE_H
 
-#include <boost/utility.hpp>
-#include <boost/scoped_ptr.hpp>
-
-#include <string>
+#include "support/strfwd.h"
 
 
 namespace lyx {
@@ -49,7 +46,7 @@ namespace support { class FileName; }
  *
  * There is no cache maintenance yet (max size, max age etc.)
  */
-class ConverterCache : boost::noncopyable {
+class ConverterCache {
 public:
 
        /// This is a singleton class. Get the instance.
@@ -89,6 +86,10 @@ public:
                  support::FileName const & dest) const;
 
 private:
+       /// noncopyable
+       ConverterCache(ConverterCache const &);
+       void operator=(ConverterCache const &);
+
        /** Make the c-tor, d-tor private so we can control how many objects
         *  are instantiated.
         */
@@ -99,7 +100,7 @@ private:
        /// Use the Pimpl idiom to hide the internals.
        class Impl;
        /// The pointer never changes although *pimpl_'s contents may.
-       boost::scoped_ptr<Impl> const pimpl_;
+       Impl * const pimpl_;
 };
 
 } // namespace lyx