]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsLoader.h
If the graphics loader has a copy c-tor it should have copy assignment that does...
[lyx.git] / src / graphics / GraphicsLoader.h
index 893070919a9232bd9ddd564d0d5030f787e29729..c95a21430a6f08fa5a7ac710a6ed295ada08f58f 100644 (file)
@@ -31,7 +31,6 @@
 #include <boost/scoped_ptr.hpp>
 
 class Inset;
-class BufferView;
 
 namespace grfx {
 
@@ -46,10 +45,14 @@ public:
        Loader(string const & file_with_path, DisplayType = ColorDisplay);
        /// The image is transformed before display.
        Loader(string const & file_with_path, Params const &);
+       ///
+       Loader(Loader const &);
 
        /// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy.
        ~Loader();
 
+       Loader & operator=(Loader const &);
+
        /// The file can be changed, or the display params, or both.
        void reset(string const & file_with_path,
                   DisplayType = ColorDisplay) const;