]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.h
tex2lyx: add strike-outs etc. to the TeX testfile
[lyx.git] / src / Buffer.h
index 118428ad1281293d7e9594b9720ebf88dd73079b..5c90f51bb694c89e9a612e239756682fb913ed8b 100644 (file)
@@ -516,7 +516,7 @@ public:
        void setFullyLoaded(bool);
 
        /// FIXME: Needed by RenderPreview.
-       graphics::PreviewLoader * Buffer::loader() const;
+       graphics::PreviewLoader * loader() const;
        /// Update the LaTeX preview snippets associated with this buffer
        void updatePreviews() const;
        /// Remove any previewed LaTeX snippets associated with this buffer
@@ -604,11 +604,12 @@ public:
 
        
 
-       ///
-       bool doExport(std::string const & format, bool put_in_tempdir,
+       /// target is a format name optionally followed by a space
+       /// and a destination file-name
+       bool doExport(std::string const & target, bool put_in_tempdir,
                bool includeall, std::string & result_file) const;
        ///
-       bool doExport(std::string const & format, bool put_in_tempdir,
+       bool doExport(std::string const & target, bool put_in_tempdir,
                      bool includeall = false) const;
        ///
        bool preview(std::string const & format, bool includeall = false) const;
@@ -673,7 +674,10 @@ private:
        ///
        void collectChildren(ListOfBuffers & children, bool grand_children) const;
 
-       
+       /// noncopyable
+       Buffer(Buffer const &);
+       void operator=(Buffer const &);
+
        /// Use the Pimpl idiom to hide the internals.
        class Impl;
        /// The pointer never changes although *pimpl_'s contents may.